Internal
problem
ID
[5661]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
37
Problem
number
:
1116
Date
solved
:
Tuesday, March 04, 2025 at 11:17:16 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)