Internal
problem
ID
[6075]
Book
:
A
treatise
on
ordinary
and
partial
differential
equations
by
William
Woolsey
Johnson.
1913
Section
:
Chapter
IX,
Special
forms
of
differential
equations.
Examples
XVII.
page
247
Problem
number
:
1
Date
solved
:
Wednesday, March 05, 2025 at 12:11:11 AM
CAS
classification
:
[_rational, _Riccati]
ode:=y(x)^2+diff(y(x),x) = a^2/x^4; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]^2==a^2/x^4; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a**2/x**4 + y(x)**2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)