Internal
problem
ID
[18779]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
IV.
Singular
solutions.
problems
at
page
43
Problem
number
:
Ex.
3
Date
solved
:
Monday, March 31, 2025 at 06:12:27 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)*x^(1/2) = y(x)^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*Sqrt[x]==Sqrt[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sqrt(x)*Derivative(y(x), x) - sqrt(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)