Internal
problem
ID
[11853]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
552
Date
solved
:
Friday, October 03, 2025 at 02:48:06 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=diff(y(x),x)^n-f(x)*g(y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=-(f[x]*g[y[x]]) + D[y[x],x]^n==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = symbols("n") y = Function("y") f = Function("f") g = Function("g") ode = Eq(-f(x)*g(y(x)) + Derivative(y(x), x)**n,0) ics = {} dsolve(ode,func=y(x),ics=ics)