I am trying to simulate a rocket launch by solving the equations of motion for a rocket launched from earth. The system of equations is as follows: $$ \frac{d^{2}y}{dt^{2}} = \frac{T}{m(t)} - \frac{GM}{y^{2}} \quad , \quad \frac{dm}{dt} = \frac{-T}{I_{sp}g_0} \quad , \quad y(0)=y_0 \ , \ v(0)=0$$
Where $m(t)$ is the time-dependant mass of the rocket, $y_0$ is the radius of the earth, $g_{0}$ is the gravitational constant at $y_{0}$ and $T,I_{sp}$ are rocket parameters to be chosen freely in my model. I have implemented explicit Euler, velocity Verlet and RK4 (all correctly i believe) and they all seem to work fine, even for large time steps.
My issue is that i have been asked to motivate my choice of integrator and show some form of accuracy metric for this decision. In previous problems of the same kind, there was an exact solution to compare to or, in the case of velocity Verlet, you could use energy conservation in for example a harmonic pendulum to judge accuracy. In this case, I am the one to model the rocket freely so there is no exact solution and i assume the energy is not conserved because of the fuel burning so i can't use that either. How can i choose one of these and show its accuracy?
I would appreciate any suggestions.