58.11.5 problem 5

Internal problem ID [14736]
Book : Differential Equations by Shepley L. Ross. Third edition. John Willey. New Delhi. 2004.
Section : Chapter 4, Section 4.3. The method of undetermined coefficients. Exercises page 151
Problem number : 5
Date solved : Thursday, October 02, 2025 at 09:50:38 AM
CAS classification : [[_2nd_order, _linear, _nonhomogeneous]]

\begin{align*} y^{\prime \prime }+2 y^{\prime }+4 y&=\cos \left (4 x \right ) \end{align*}
Maple. Time used: 0.009 (sec). Leaf size: 41
ode:=diff(diff(y(x),x),x)+2*diff(y(x),x)+4*y(x) = cos(4*x); 
dsolve(ode,y(x), singsol=all);
 
\[ y = {\mathrm e}^{-x} \sin \left (\sqrt {3}\, x \right ) c_2 +{\mathrm e}^{-x} \cos \left (\sqrt {3}\, x \right ) c_1 +\frac {\sin \left (4 x \right )}{26}-\frac {3 \cos \left (4 x \right )}{52} \]
Mathematica. Time used: 0.735 (sec). Leaf size: 54
ode=D[y[x],{x,2}]+2*D[y[x],x]+4*y[x]==Cos[4*x]; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to \frac {1}{26} \sin (4 x)-\frac {3}{52} \cos (4 x)+c_2 e^{-x} \cos \left (\sqrt {3} x\right )+c_1 e^{-x} \sin \left (\sqrt {3} x\right ) \end{align*}
Sympy. Time used: 0.159 (sec). Leaf size: 41
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(4*y(x) - cos(4*x) + 2*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = \left (C_{1} \sin {\left (\sqrt {3} x \right )} + C_{2} \cos {\left (\sqrt {3} x \right )}\right ) e^{- x} + \frac {\sin {\left (4 x \right )}}{26} - \frac {3 \cos {\left (4 x \right )}}{52} \]