Internal
problem
ID
[1111]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.1.
Page
40
Problem
number
:
14
Date
solved
:
Tuesday, September 30, 2025 at 04:22:06 AM
CAS
classification
:
[[_linear, `class A`]]
With initial conditions
ode:=2*y(t)+diff(y(t),t) = t/exp(2*t); ic:=[y(1) = 0]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=2*y[t]+D[y[t],t] == t/Exp[2*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*exp(-2*t) + 2*y(t) + Derivative(y(t), t),0) ics = {y(1): 0} dsolve(ode,func=y(t),ics=ics)