Internal
problem
ID
[4685]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
3
Problem
number
:
77
Date
solved
:
Friday, March 14, 2025 at 01:27:34 AM
CAS
classification
:
[_Abel]
ode:=diff(y(x),x)+(a*x+y(x))*y(x)^2 = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+(a x+y[x])y[x]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq((a*x + y(x))*y(x)**2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
RecursionError : maximum recursion depth exceeded