6.8 problem 1(h)

Internal problem ID [5968]

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]]

\[ \boxed {y^{\prime \prime }+y=\sec \left (x \right )} \]

Solution by Maple

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

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

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

Solution by Mathematica

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

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

\[ y(x)\to (x+c_2) \sin (x)+\cos (x) (\log (\cos (x))+c_1) \]