Internal
problem
ID
[14584]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.2
(Separable
equations).
Exercises
page
47
Problem
number
:
14
Date
solved
:
Thursday, October 02, 2025 at 09:43:04 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=(x+y(x))^(1/2)+(x-y(x))^(1/2)+((x-y(x))^(1/2)-(x+y(x))^(1/2))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(Sqrt[x+y[x]]+Sqrt[x-y[x]])+(Sqrt[x-y[x]]-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)) + sqrt(x + y(x)) + (sqrt(x - y(x)) - sqrt(x + y(x)))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)