Internal
problem
ID
[17835]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
30
(page
38)
Date
solved
:
Monday, March 31, 2025 at 04:35:27 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Bernoulli]
ode:=x*diff(y(x),x)-4*y(x) = x^2*y(x)^(1/2); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]-4*y[x]==x^2*Sqrt[ y[x] ]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2*sqrt(y(x)) + x*Derivative(y(x), x) - 4*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)