Internal
problem
ID
[208]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Review
problems
at
page
98
Problem
number
:
30
Date
solved
:
Tuesday, March 04, 2025 at 11:03:10 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = (x+y(x))^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Sqrt[x+y[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)