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