Internal
problem
ID
[5706]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
2
Problem
number
:
3.2
Date
solved
:
Tuesday, March 04, 2025 at 11:29:01 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=(2*(x*y(x))^(1/2)-x)*diff(y(x),x)+y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=(2*Sqrt[x*y[x]]-x)*D[y[x],x]+y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x + 2*sqrt(x*y(x)))*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)