Internal
problem
ID
[5158]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
20
Problem
number
:
564
Date
solved
:
Sunday, March 30, 2025 at 06:46:02 AM
CAS
classification
:
[_rational, [_1st_order, `_with_symmetry_[F(x)*G(y),0]`], [_Abel, `2nd type`, `class C`]]
ode:=x*(x^n+a*y(x))*diff(y(x),x)+(b+c*y(x))*y(x)^2 = 0; dsolve(ode,y(x), singsol=all);
ode=x(x^n+a y[x])D[y[x],x]+(b+c y[x])y[x]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") n = symbols("n") y = Function("y") ode = Eq(x*(a*y(x) + x**n)*Derivative(y(x), x) + (b + c*y(x))*y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out