12.57 problem 63

Internal problem ID [14632]

Book: INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section: Chapter 4. Higher Order Equations. Exercises 4.4, page 163
Problem number: 63.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries]]

\[ \boxed {4 t^{2} y^{\prime \prime }+4 y^{\prime } t +\left (16 t^{2}-1\right ) y=0} \] Given that one solution of the ode is \begin {align*} y_1 &= \frac {\sin \left (2 t \right )}{\sqrt {t}} \end {align*}

Solution by Maple

Time used: 0.063 (sec). Leaf size: 21

dsolve([4*t^2*diff(y(t),t$2)+4*t*diff(y(t),t)+(16*t^2-1)*y(t)=0,1/sqrt(t)*sin(2*t)],singsol=all)
 

\[ y \left (t \right ) = \frac {\sin \left (2 t \right ) c_{1} +c_{2} \cos \left (2 t \right )}{\sqrt {t}} \]

Solution by Mathematica

Time used: 0.04 (sec). Leaf size: 39

DSolve[4*t^2*y''[t]+4*t*y'[t]+(16*t^2-1)*y[t]==0,y[t],t,IncludeSingularSolutions -> True]
 

\[ y(t)\to \frac {e^{-2 i t} \left (4 c_1-i c_2 e^{4 i t}\right )}{4 \sqrt {t}} \]