Let's say I have a 1st order differential equation with a known initial boundary condition. If I want to solve it in Mathematica, I know that I need to use NDSolve, for example:
s = NDSolve[{y'[x] == y[x] Cos[x + y[x]], y[0] == 1}, y, {x, 0, 30}]
However, is there any command available that will show me the exact numerical method Mathematica is using to solve the equation? Thanks in advance.