1.6 problem Problem 11.6

Internal problem ID [5168]

Book: Schaums Outline Differential Equations, 4th edition. Bronson and Costa. McGraw Hill 2014
Section: Chapter 11. THE METHOD OF UNDETERMINED COEFFICIENTS. page 95
Problem number: Problem 11.6.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _linear, _nonhomogeneous]]

\[ \boxed {y^{\prime \prime }-6 y^{\prime }+25 y=50 t^{3}-36 t^{2}-63 t +18} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 33

dsolve(diff(y(t),t$2)-6*diff(y(t),t)+25*y(t)=50*t^3-36*t^2-63*t+18,y(t), singsol=all)
 

\[ y \left (t \right ) = {\mathrm e}^{3 t} \sin \left (4 t \right ) c_{2} +{\mathrm e}^{3 t} \cos \left (4 t \right ) c_{1} +2 t^{3}-3 t \]

Solution by Mathematica

Time used: 0.019 (sec). Leaf size: 38

DSolve[y''[t]-6*y'[t]+25*y[t]==50*t^3-36*t^2-63*t+18,y[t],t,IncludeSingularSolutions -> True]
 

\[ y(t)\to 2 t^3-3 t+c_2 e^{3 t} \cos (4 t)+c_1 e^{3 t} \sin (4 t) \]