Internal
problem
ID
[5745]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
6
Problem
number
:
2
Date
solved
:
Tuesday, March 04, 2025 at 11:34:32 PM
CAS
classification
:
[_rational, _Riccati]
ode:=x*diff(y(x),x)-a*y(x)+y(x)^2 = x^(-2/3*a); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]-a*y[x]+y[x]^2==x^(-2*a/3); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a*y(x) + x*Derivative(y(x), x) + y(x)**2 - 1/x**(2*a/3),0) ics = {} dsolve(ode,func=y(x),ics=ics)
RecursionError : maximum recursion depth exceeded