Internal
problem
ID
[22897]
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
:
6
Date
solved
:
Thursday, October 02, 2025 at 09:16:23 PM
CAS
classification
:
[[_high_order, _with_linear_symmetries]]
ode:=diff(diff(diff(diff(x(t),t),t),t),t)-x(t) = 8*exp(-t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,4}]-x[t]==8*Exp[-t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-x(t) + Derivative(x(t), (t, 4)) - 8*exp(-t),0) ics = {} dsolve(ode,func=x(t),ics=ics)