@uncertainthomas Sorry, maybe the wording is a bit tricky. Their "scores" are static (raw reps, lbs, time). The "placement" is how those scores relate to each other per workout (higher "score" means lower "placement").
In the
example, assume that we have
already dropped all other athletes who have a higher total points than
, and this is our starting point. Also for the sake of that example, assume that these are the only 3 athletes being compared.
When we drop
, then the "scores" of
and
do not change. Consider workout 1:
Code:
[C] had 200 reps, placing 2nd
in workout 1
Code:
[F] had 150 reps, placing 15th
in workout 1
Code:
[E] had 100 reps, placing 20th
in workout 1
After dropping
Code:
[F]* had 150 reps, placing 14th
in workout 1
Code:
[E]* had 100 reps, placing 19th
in workout 1
Their absolute scores never change (number of reps), and their relative position to each other does not change (for this example). But their relative position to the next fittest athlete
has changed.
used to be 2 points behind 13th, but now is only 1 point behind him.
used to be 2 points behind 18th, but now is only 1 point behind him.
If their placements were not equal for the other four workouts, then their overall points total might change and affect their overall ranking (as shown in the following example
).