Internal
problem
ID
[15216]
Book
:
Differential
equations
and
the
calculus
of
variations
by
L.
ElSGOLTS.
MIR
PUBLISHERS,
MOSCOW,
Third
printing
1977.
Section
:
Chapter
2,
DIFFERENTIAL
EQUATIONS
OF
THE
SECOND
ORDER
AND
HIGHER.
Problems
page
172
Problem
number
:
Problem
51
Date
solved
:
Thursday, October 02, 2025 at 10:07:25 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(x(t),t),t)+10*diff(x(t),t)+25*x(t) = 2^t+t*exp(-5*t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]+10*D[x[t],t]+25*x[t]==2^t+t*Exp[-5*t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-2**t - t*exp(-5*t) + 25*x(t) + 10*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)