Internal
problem
ID
[18518]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
56.
Problems
at
page
163
Problem
number
:
11
Date
solved
:
Monday, March 31, 2025 at 05:41:05 PM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=diff(diff(diff(diff(x(t),t),t),t),t)-6*diff(diff(diff(x(t),t),t),t)+11*diff(diff(x(t),t),t)-6*diff(x(t),t) = exp(-3*t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,4}]-6*D[x[t],{t,3}]+11*D[x[t],{t,2}]-6*D[x[t],t]==Exp[-3*t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-6*Derivative(x(t), t) + 11*Derivative(x(t), (t, 2)) - 6*Derivative(x(t), (t, 3)) + Derivative(x(t), (t, 4)) - exp(-3*t),0) ics = {} dsolve(ode,func=x(t),ics=ics)