Evaluating with DSolve has taken ~50 minutes to complete when given this ODE:
DSolve[y''[t] == Sqrt[1 + y[t]^2], y[t], t]
{}DSolve::bvimp: General solution contains implicit solutions. In the boundary value problem, these solutions will be ignored, so some of the solutions will be lost.
I am not sure if it is a problem with my input.
The computation takes even longer with boundary values.
DSolve[{y''[t] == Sqrt[1+y[t]^2, y[0] == 0}, y[t], t]
The output fro this is the same as shown above.
Is there a problem with the way I am expressing the problem?
yin terms oft), you'll get the result @user64494 got, but without both sides being squared. – Michael E2 Jan 17 '18 at 20:58