Imagine you have a rocket and you want to move it from point a to point b. The flight plan is as follows:
- Fire the rocket engine for a constant acceleration of
1 m/s^2untilxmeters is covered (prograde burn) - Turn the rocket 180 degrees so that the rocket engine points retrograde. Note that while this happens the linear acceleration of the rocket is
0but the velocity is still> 0, it still moves. - Fire the rocket engine for a constant deceleration of
1 m/s^2until the lastxmeters is covered (retrograde burn)
It is logically that the burn in step 1 and 3 covers the same distance, x.
Say that the distance between a and b is 1000 meter and rotating the rocket takes 5 seconds. How do I approach finding a solution for x?
Normally I would start with computing the integral of the acceleration so I can find the distance the rocket has covered after several seconds. But in this case I don't know the distance (or time) after which the rocket should stop firing its rocket.
Please ignore other physical forces like gravity, drag, etc...
I've removed the image as it was indeed wrong and very confusing.

The trick is to figure out how long it will take to accelerate that distance and then use that to calculate the distance itself.
Let's lay out the variables:
The distance traversed during both acceleration and deceleration is $\frac{1}{2}a\tau^2$. Moreover, after acceleration, the ship is traveling at a speed of $a\tau$, so the distance traversed during rotation is $a\tau t_R$.
Putting all of this together yields the quadratic equation $$ d = a\tau^2 + a\tau t_R$$ which can be solved for $\tau$. Once $\tau$ is known, you can easily compute $\frac{1}{2}a\tau^2$.