6.8 problem 1(h)

Internal problem ID [5215]

Book: An introduction to Ordinary Differential Equations. Earl A. Coddington. Dover. NY 1961
Section: Chapter 2. Linear equations with constant coefficients. Page 69
Problem number: 1(h).
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {y^{\prime \prime }+y-\sec \relax (x )=0} \end {gather*}

Solution by Maple

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

dsolve(diff(y(x),x$2)+y(x)=sec(x),y(x), singsol=all)
 

\[ y \relax (x ) = c_{2} \sin \relax (x )+c_{1} \cos \relax (x )-\ln \left (\frac {1}{\cos \relax (x )}\right ) \cos \relax (x )+x \sin \relax (x ) \]

Solution by Mathematica

Time used: 0.015 (sec). Leaf size: 22

DSolve[y''[x]+y[x]==Sec[x],y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to (x+c_2) \sin (x)+\cos (x) (\log (\cos (x))+c_1) \\ \end{align*}