Internal
problem
ID
[17877]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
86
(page
123)
Date
solved
:
Thursday, March 13, 2025 at 11:08:12 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = (y(x)-x)^(1/2)+1; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Sqrt[y[x]-x]+1; 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) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)