Internal
problem
ID
[10155]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
144
Date
solved
:
Wednesday, March 05, 2025 at 08:34:00 AM
CAS
classification
:
[_rational, _Riccati]
ode:=x^2*(diff(y(x),x)+y(x)^2*a)+b*x^alpha+c = 0; dsolve(ode,y(x), singsol=all);
ode=x^2*(D[y[x],x]+a*y[x]^2) + b*x^\[Alpha] + c==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") Alpha = symbols("Alpha") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(b*x**Alpha + c + x**2*(a*y(x)**2 + Derivative(y(x), x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-a*x**2*y(x)**2 - b*x**Alpha - c)/x**2 cannot be solved by the factorable group method