Internal
problem
ID
[11398]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
85
Date
solved
:
Sunday, October 12, 2025 at 01:37:10 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`]]
ode:=diff(y(x),x)-x^(a-1)*y(x)^(1-b)*f(x^a/a+y(x)^b/b) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - x^(a-1)*y[x]^(1-b)*f[x^a/a + y[x]^b/b]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") f = Function("f") ode = Eq(-x**(a - 1)*f(y(x)**b/b + x**a/a)*y(x)**(1 - b) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : psolve: Cannot solve x*Derivative(y(x, _y), x)/x**a - _y*Derivative(y(x, _y), _y)/_y**b