Internal
problem
ID
[18343]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
5.
Power
Series
Solutions
and
Special
Functions.
Section
28.
Second
Order
Linear
Equations.
Ordinary
Points.
Problems
at
page
217
Problem
number
:
2
(a)
Date
solved
:
Monday, March 31, 2025 at 05:25:59 PM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
ode:=diff(diff(y(x),x),x)+x*diff(y(x),x)+y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+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*Derivative(y(x), x) + y(x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False