1.56 problem 56

Internal problem ID [6346]

Book: Own collection of miscellaneous problems
Section: section 1.0
Problem number: 56.
ODE order: 2.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime }-f \left (t \right )=0} \]

Solution by Maple

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

dsolve(diff(y(t),t$2)=f(t),y(t), singsol=all)
 

\[ y \left (t \right ) = \int \left (\int f \left (t \right )d t \right )d t +c_{1} t +c_{2} \]

Solution by Mathematica

Time used: 0.01 (sec). Leaf size: 30

DSolve[y''[t]==f[t],y[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} y(t)\to \int _1^t\int _1^{K[2]}f(K[1])dK[1]dK[2]+c_2 t+c_1 \\ \end{align*}