Internal
problem
ID
[16397]
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
:
48
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.036 (sec). Leaf size: 27
dsolve([2*diff(y(t),t$5)+7*diff(y(t),t$4)+17*diff(y(t),t$3)+17*diff(y(t),t$2)+5*diff(y(t),t)=0,y(0) = -3, D(y)(0) = 15/2, (D@@2)(y)(0) = 17/4, (D@@3)(y)(0) = -385/8, (D@@4)(y)(0) = 1217/16],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.222 (sec). Leaf size: 89
DSolve[{2*D[ y[t],{t,5}]+7*D[y[t],{t,4}]+17*D[ y[t],{t,3}]+17*D[y[t],{t,2}]+5*D[y[t],t]==0,{y[0]==-3,Derivative[1][y][0] ==15/2,Derivative[2][y][0] ==17/4,Derivative[3][y][0]==-385/8,Derivative[4][y][0]==1217/16}},y[t],t,IncludeSingularSolutions -> True]