Internal
problem
ID
[11779]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
478
Date
solved
:
Tuesday, September 30, 2025 at 10:21:22 PM
CAS
classification
:
[_quadrature]
ode:=(a*y(x)+b)*(1+diff(y(x),x)^2)-c = 0; dsolve(ode,y(x), singsol=all);
ode=-c + (b + a*y[x])*(1 + D[y[x],x]^2)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(-c + (a*y(x) + b)*(Derivative(y(x), x)**2 + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)