DSolve::bvimp RSolve::bvimp
Examples
Basic Examples (1)
The general solution of the following nonlinear second-order ODE is in implicit form:
Off[InverseFunction::ifun, Solve::ifun, Solve::tdep]DSolve[{(y[x] - x) * y''[x] + y'[x] ^ 2 == 0}, y, x]Hence, DSolve is unable to solve the following boundary value problem for the ODE:
DSolve[{(y[x] - x) * y''[x] + y'[x] ^ 2 == 0, y[1] == 2, y'[1] == 5}, y, x]A numerical solution can be obtained using NDSolve:
NDSolve[{(y[x] - x) * y''[x] + y'[x] ^ 2 == 0, y[1] == 2, y'[1] == 5}, y, {x, 1, 3}]On[InverseFunction::ifun, Solve::ifun, Solve::tdep]