Internal
problem
ID
[8748]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
37
Date
solved
:
Sunday, March 30, 2025 at 01:29:58 PM
CAS
classification
:
[_rational, _Riccati]
ode:=x*diff(y(x),x)-2*y(x)+b*y(x)^2 = c*x^4; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]-2*y[x]+b*y[x]^2==c*x^4; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(b*y(x)**2 - c*x**4 + x*Derivative(y(x), x) - 2*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
RecursionError : maximum recursion depth exceeded