Internal
problem
ID
[16396]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
4.
Higher
Order
Equations.
Exercises
4.5,
page
175
Problem
number
:
47
Date
solved
:
Tuesday, January 28, 2025 at 09:07:28 AM
CAS
classification
:
[[_high_order, _missing_x]]
With initial conditions
✓ Solution by Maple
Time used: 0.033 (sec). Leaf size: 23
dsolve([8*diff(y(t),t$5)+4*diff(y(t),t$4)+66*diff(y(t),t$3)-41*diff(y(t),t$2)-37*diff(y(t),t)=0,y(0) = 4, D(y)(0) = -14, (D@@2)(y)(0) = -14, (D@@3)(y)(0) = 139, (D@@4)(y)(0) = -29/4],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.241 (sec). Leaf size: 79
DSolve[{8*D[ y[t],{t,5}]+4*D[y[t],{t,4}]+66*D[ y[t],{t,3}]-41*D[y[t],{t,2}]-37*D[y[t],t]==0,{y[0]==4,Derivative[1][y][0] ==-14,Derivative[2][y][0] ==-14,Derivative[3][y][0]==139,Derivative[4][y][0]==-29/4}},y[t],t,IncludeSingularSolutions -> True]