Internal
problem
ID
[17884]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
85
(page
123)
Date
solved
:
Monday, March 31, 2025 at 04:48:02 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = (y(x)-x)^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Sqrt[y[x]-x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sqrt(-x + y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)