Internal
problem
ID
[5314]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
25
Problem
number
:
724
Date
solved
:
Sunday, March 30, 2025 at 07:53:48 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+Sqrt[x+y[x]])*D[y[x],x]+1==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)