Internal
problem
ID
[10341]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
334
Date
solved
:
Wednesday, March 05, 2025 at 10:22:19 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=(1+(x+y(x))^(1/2))*diff(y(x),x)+1 = 0; dsolve(ode,y(x), singsol=all);
ode=1 + (1 + Sqrt[x + y[x]])*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((sqrt(x + y(x)) + 1)*Derivative(y(x), x) + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)