Internal
problem
ID
[1116]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.1.
Page
40
Problem
number
:
19
Date
solved
:
Saturday, March 29, 2025 at 10:39:33 PM
CAS
classification
:
[_linear]
With initial conditions
ode:=4*t^2*y(t)+t^3*diff(y(t),t) = exp(-t); ic:=y(-1) = 0; dsolve([ode,ic],y(t), singsol=all);
ode=4*t^2*y[t]+t^3*D[y[t],t] == Exp[-t]; ic=y[-1]==0; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**3*Derivative(y(t), t) + 4*t**2*y(t) - exp(-t),0) ics = {y(-1): 0} dsolve(ode,func=y(t),ics=ics)