Internal
problem
ID
[1169]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.4.
Page
76
Problem
number
:
4
Date
solved
:
Tuesday, September 30, 2025 at 04:27:10 AM
CAS
classification
:
[_linear]
With initial conditions
ode:=2*t*y(t)+(-t^2+4)*diff(y(t),t) = 3*t^2; ic:=[y(-3) = 1]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=2*t*y[t]+(-t^2+4)*D[y[t],t] == 3*t^2; ic=y[-3]==1; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-3*t**2 + 2*t*y(t) + (4 - t**2)*Derivative(y(t), t),0) ics = {y(-3): 1} dsolve(ode,func=y(t),ics=ics)