Internal
problem
ID
[16926]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Chapter
2
(Higher
order
ODEs).
Section
14.
Differential
equations
admitting
of
depression
of
their
order.
Exercises
page
107
Problem
number
:
338
Date
solved
:
Tuesday, January 28, 2025 at 09:41:06 AM
CAS
classification
:
[[_2nd_order, _missing_y], [_2nd_order, _reducible, _mu_poly_yn]]
With initial conditions
✓ Solution by Maple
Time used: 0.128 (sec). Leaf size: 12
dsolve([2*diff(y(x),x$2)=diff(y(x),x)/x+x^2/diff(y(x),x),y(1) = 1/5*2^(1/2), D(y)(1) = 1/2*2^(1/2)],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 0.088 (sec). Leaf size: 26
DSolve[{2*D[y[x],{x,2}]==D[y[x],x]/x+x^2/D[y[x],x],{y[1]==Sqrt[2]/5,Derivative[1][y][1]==Sqrt[2]/2}},y[x],x,IncludeSingularSolutions -> True]