Did the U.S. Army use a formula to evaluate fitness performance?

96 Views Asked by At

While writing a web app to calculate one's score on the Army Physical Fitness Test (APFT), I grew tired of simply retyping this chart:

                  enter image description here

I would like to know if there is an easier way to calculate a score such as a formula that might have been originally used. Is there a pattern or method to it?

I thought I got close with this, but no cigar:

$$((x*0.01)*71)*2$$

$x$ being the amount of reps a soldier completes and $71$ is the max needed for the youngest age group.

1

There are 1 best solutions below

0
On

It looks like in each column they rounded a linear function. You get quite a good approximation already if you use the linear function defined by the first and last values in the column. I suspect that if you do a linear fit to the data in each column, rounding the result will reproduce the data.