Internal
problem
ID
[2417]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
2.8,
Series
solutions.
Page
195
Problem
number
:
5
Date
solved
:
Tuesday, September 30, 2025 at 05:35:35 AM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
Using series method with expansion around
With initial conditions
Order:=6; ode:=t*(2-t)*diff(diff(y(t),t),t)-6*(t-1)*diff(y(t),t)-4*y(t) = 0; ic:=[y(1) = 1, D(y)(1) = 0]; dsolve([ode,op(ic)],y(t),type='series',t=1);
ode=t*(2-t)*D[y[t],{t,2}]-6*(t-1)*D[y[t],t]-4*y[t]==0; ic={y[1]==1,Derivative[1][y][1]==0}; AsymptoticDSolveValue[{ode,ic},y[t],{t,1,5}]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*(2 - t)*Derivative(y(t), (t, 2)) - (6*t - 6)*Derivative(y(t), t) - 4*y(t),0) ics = {y(1): 1, Subs(Derivative(y(t), t), t, 1): 0} dsolve(ode,func=y(t),ics=ics,hint="2nd_power_series_ordinary",x0=1,n=6)