Internal
problem
ID
[19552]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
3.
Second
order
linear
equations.
Section
15.
The
General
Solution
of
the
Homogeneous
Equation.
Problems
at
page
117
Problem
number
:
5
Date
solved
:
Thursday, October 02, 2025 at 04:40:04 PM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
With initial conditions
ode:=x^2*diff(diff(y(x),x),x)-2*y(x) = 0; ic:=[y(1) = 1, D(y)(1) = 8]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=x^2*D[y[x],{x,2}] -2*y[x]==0; ic={y[1]==1,Derivative[1][y][1]==8}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2*Derivative(y(x), (x, 2)) - 2*y(x),0) ics = {y(1): 1, Subs(Derivative(y(x), x), x, 1): 8} dsolve(ode,func=y(x),ics=ics)