Internal
problem
ID
[5687]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
2.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
SECOND
OR
HIGHER
DEGREE,
page
278
Problem
number
:
374
Date
solved
:
Tuesday, September 30, 2025 at 01:57:46 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=(x-y(x))*diff(y(x),x)^(1/2) = a*(1+diff(y(x),x)); dsolve(ode,y(x), singsol=all);
ode=(x-y[x])*Sqrt[D[y[x],x]]== a*(1+D[y[x],x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a*(Derivative(y(x), x) + 1) + (x - y(x))*sqrt(Derivative(y(x), x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)