Internal
problem
ID
[2446]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
2.8.2,
Regular
singular
points,
the
method
of
Frobenius.
Page
214
Problem
number
:
6
Date
solved
:
Sunday, March 30, 2025 at 12:01:42 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using series method with expansion around
Order:=6; ode:=t^3*diff(diff(y(t),t),t)+sin(t^3)*diff(y(t),t)+t*y(t) = 0; dsolve(ode,y(t),type='series',t=0);
ode=t^3*D[y[t],{t,2}]+Sin[t^3]*D[y[t],t]+t*y[t]==0; ic={}; AsymptoticDSolveValue[{ode,ic},y[t],{t,0,5}]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**3*Derivative(y(t), (t, 2)) + t*y(t) + sin(t**3)*Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)
ValueError : ODE t**3*Derivative(y(t), (t, 2)) + t*y(t) + sin(t**3)*Derivative(y(t), t) does not match hint 2nd_power_series_regular