Internal
problem
ID
[10554]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
553
Date
solved
:
Wednesday, March 05, 2025 at 12:04:06 PM
CAS
classification
:
[_quadrature]
ode:=a*diff(y(x),x)^m+b*diff(y(x),x)^n-y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=-y[x] + a*D[y[x],x]^m + b*D[y[x],x]^n==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") m = symbols("m") n = symbols("n") y = Function("y") ode = Eq(a*Derivative(y(x), x)**m + b*Derivative(y(x), x)**n - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0**m, _X0**n] No algorithms are implemented to solve equation _X0**m*a + _X0**n*b - y(x)