I am solving this equation;
DSolve[{y'[t] == (t^2 y[t]^2)/(1 + 8 t^4), y[0] == 1/2}, y[t], t] NDSolve[{y'[t] == (t^2 y[t]^2)/(1 + 8 t^4), y[0] == 1/2}, y, {t, 0, 1.3}] I have solved it numerically and analytically and I have plotted both results.
I need to check my solutions by substituting them back into the original equation; I am not sure how to do this, specifically for the numerical solution.
ycould be huge while the error in the ODE should still be close to zero. Checking between the steps will add a significant interpolation error, unless you use the optionInterpolationOrder -> AllinNDSolve. $\endgroup$