Internal
problem
ID
[22903]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
4.
Linear
differential
equations.
A
Exercises
at
page
216
Problem
number
:
12
Date
solved
:
Thursday, October 02, 2025 at 09:16:27 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(r(t),t),t)-2*r(t) = -exp(-2*t); dsolve(ode,r(t), singsol=all);
ode=D[r[t],{t,2}]-2*r[t]==-Exp[-2*t]; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(-2*r(t) + Derivative(r(t), (t, 2)) + exp(-2*t),0) ics = {} dsolve(ode,func=r(t),ics=ics)