1.55 problem 55

Internal problem ID [7099]

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

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

\[ \boxed {y^{\prime \prime }=1} \]

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.002 (sec). Leaf size: 19

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

\[ y(t)\to \frac {t^2}{2}+c_2 t+c_1 \]