Internal
problem
ID
[9006]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
22
Date
solved
:
Sunday, March 30, 2025 at 01:58:46 PM
CAS
classification
:
[_rational, _Riccati]
Unknown ode type.
ode:=c*diff(y(x),x) = (a*x+b*y(x)^2)/r/x^2; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli trying separable trying inverse linear trying homogeneous types: trying Chini differential order: 1; looking for linear symmetries trying exact Looking for potential symmetries trying Riccati trying Riccati sub-methods: -> Trying a Liouvillian solution using Kovacics algorithm <- No Liouvillian solutions exists <- Abel AIR successful: ODE belongs to the 0F1 1-parameter (Bessel type) cla\ ss
Maple step by step
ode=c*D[y[x],x]==(a*x+b*y[x]^2)/(r*x^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") r = symbols("r") y = Function("y") ode = Eq(c*Derivative(y(x), x) - (a*x + b*y(x)**2)/(r*x**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
RecursionError : maximum recursion depth exceeded