70.19.12 problem 12

Internal problem ID [19022]
Book : Differential equations. An introduction to modern methods and applications. James Brannan, William E. Boyce. Third edition. Wiley 2015
Section : Chapter 5. The Laplace transform. Section 5.4 (Solving differential equations with Laplace transform). Problems at page 327
Problem number : 12
Date solved : Thursday, October 02, 2025 at 03:37:02 PM
CAS classification : [[_high_order, _missing_x]]

\begin{align*} y^{\prime \prime \prime \prime }-y&=0 \end{align*}

Using Laplace method With initial conditions

\begin{align*} y \left (0\right )&=1 \\ y^{\prime }\left (0\right )&=0 \\ y^{\prime \prime }\left (0\right )&=1 \\ y^{\prime \prime \prime }\left (0\right )&=0 \\ \end{align*}
Maple. Time used: 0.093 (sec). Leaf size: 6
ode:=diff(diff(diff(diff(y(t),t),t),t),t)-y(t) = 0; 
ic:=[y(0) = 1, D(y)(0) = 0, (D@@2)(y)(0) = 1, (D@@3)(y)(0) = 0]; 
dsolve([ode,op(ic)],y(t),method='laplace');
 
\[ y = \cosh \left (t \right ) \]
Mathematica. Time used: 0.002 (sec). Leaf size: 21
ode=D[y[t],{t,4}]-y[t]==0; 
ic={y[0]==1,Derivative[1][y][0] == 0,Derivative[2][y][0] == 1,Derivative[3][y][0] == 0}; 
DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
 
\begin{align*} y(t)&\to \frac {1}{2} e^{-t} \left (e^{2 t}+1\right ) \end{align*}
Sympy. Time used: 0.059 (sec). Leaf size: 14
from sympy import * 
t = symbols("t") 
y = Function("y") 
ode = Eq(-y(t) + Derivative(y(t), (t, 4)),0) 
ics = {y(0): 1, Subs(Derivative(y(t), t), t, 0): 0, Subs(Derivative(y(t), (t, 2)), t, 0): 1, Subs(Derivative(y(t), (t, 3)), t, 0): 0} 
dsolve(ode,func=y(t),ics=ics)
 
\[ y{\left (t \right )} = \frac {e^{t}}{2} + \frac {e^{- t}}{2} \]