Now, at the 400m-track, I want to do the following runs in training:
After every run, I stop directly and stay at this line. The next run will start from this same line.
The track has lines at the following distances relative to the finish:
At which line do I have to start to do my training in the described way?
Example:
I can't start at the 0m-line because then, I don't know where to stop after 50m.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We measure everything in units of 50m.
During the workout, I will run the following "partial sum" distanes
{ 1 , 3 , 6 , 1 0 , 1 3 , 1 5 , 1 6 } .
Since the track is circular with a length of 8, we have to compute the remainder of these numbers under division by 8
{ 1 , 3 , 6 , 2 , 5 , 7 , 0 }
Note that every possible remainder occurs, except 4. On the track, this means that we will get to every 50m-line exactly once, but not to the one that is 200m away from the start. This fits perfectly with the condition that there is no 350m-line, so we have to start such that the place, where this line would be, is 200m away from the start of our run. The only possible starting point for this is at 150m .