Internal
problem
ID
[13007]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
6,
non-linear
second
order
Problem
number
:
1775
(book
6.184)
Date
solved
:
Friday, October 03, 2025 at 03:58:17 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries], [_2nd_order, _reducible, _mu_xy]]
ode:=a*x^2*y(x)*diff(diff(y(x),x),x)+b*x^2*diff(y(x),x)^2+c*x*y(x)*diff(y(x),x)+d*y(x)^2 = 0; dsolve(ode,y(x), singsol=all);
ode=d*y[x]^2 + c*x*y[x]*D[y[x],x] + b*x^2*D[y[x],x]^2 + a*x^2*y[x]*D[y[x],{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") d = symbols("d") y = Function("y") ode = Eq(a*x**2*y(x)*Derivative(y(x), (x, 2)) + b*x**2*Derivative(y(x), x)**2 + c*x*y(x)*Derivative(y(x), x) + d*y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-c*y(x) + sqrt((-4*a*b*x**2*Derivative(y(x), (x, 2)) - 4*b*d*y(x) + c**2*y(x))*y(x)))/(2*b*x) cannot be solved by the factorable group method