Internal
problem
ID
[6813]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
27.
The
Legendre,
Bessel
and
Gauss
Equations.
Supplemetary
problems.
Page
230
Problem
number
:
20
Date
solved
:
Sunday, March 30, 2025 at 11:23:30 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using series method with expansion around
Order:=6; ode:=diff(diff(z(t),t),t)+t*diff(z(t),t)+(t^2-1/9)*z(t) = 0; dsolve(ode,z(t),type='series',t=0);
ode=D[z[t],{t,2}]+t*D[z[t],t]+(t^2-1/9)*z[t]==0; ic={}; AsymptoticDSolveValue[{ode,ic},z[t],{t,0,5}]
from sympy import * t = symbols("t") z = Function("z") ode = Eq(t*Derivative(z(t), t) + (t**2 - 1/9)*z(t) + Derivative(z(t), (t, 2)),0) ics = {} dsolve(ode,func=z(t),ics=ics,hint="2nd_power_series_ordinary",x0=0,n=6)