Internal
problem
ID
[6287]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
3.
THE
DIFFERENTIAL
EQUATION
IS
LINEAR
AND
OF
SECOND
ORDER,
page
311
Problem
number
:
581
Date
solved
:
Tuesday, September 30, 2025 at 02:44:57 PM
CAS
classification
:
[[_Emden, _Fowler]]
ode:=A*y(x)+(c*x^2+b*x+a)^2*diff(diff(y(x),x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=A*y[x] + (a + b*x + c*x^2)^2*D[y[x],{x,2}] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(A*y(x) + (a + b*x + c*x**2)**2*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False