Internal
problem
ID
[3782]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode
and
Scott
A
Annin.
Fourth
edition,
2015
Section
:
Chapter
8,
Linear
differential
equations
of
order
n.
Section
8.8,
A
Differential
Equation
with
Nonconstant
Coefficients.
page
567
Problem
number
:
Problem
23
Date
solved
:
Tuesday, March 04, 2025 at 05:16:39 PM
CAS
classification
:
[[_Emden, _Fowler], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]
With initial conditions
ode:=t^2*diff(diff(y(t),t),t)+t*diff(y(t),t)+25*y(t) = 0; ic:=y(1) = 3/2*3^(1/2), D(y)(1) = 15/2; dsolve([ode,ic],y(t), singsol=all);
ode=t^2*D[y[t],{t,2}]+t*D[y[t],t]+25*y[t]==0; ic={y[1]==3*Sqrt[3]/2,Derivative[1][y][1]==15/2}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**2*Derivative(y(t), (t, 2)) + t*Derivative(y(t), t) + 25*y(t),0) ics = {y(1): 3*sqrt(3)/2, Subs(Derivative(y(t), t), t, 1): 15/2} dsolve(ode,func=y(t),ics=ics)