Internal
problem
ID
[13898]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
4,
Second
and
Higher
Order
Linear
Differential
Equations.
Problems
page
221
Problem
number
:
Problem
1(L)
Date
solved
:
Monday, March 31, 2025 at 08:17:23 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=diff(y(x),x)^2*y(x)^(1/2) = sin(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]^2*Sqrt[y[x]]==Sin[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sqrt(y(x))*Derivative(y(x), x)**2 - sin(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)