DEV Community

Michael Lip
Michael Lip

Posted on • Originally published at zovo.one

How the US Army Calculates Body Fat (And Why the Formula Is Controversial)

The US Army doesn't use BMI to assess soldier fitness. It uses its own body fat estimation method based on tape measurements, and it's been the subject of debate among military personnel, fitness professionals, and researchers for decades. The method is codified in AR 600-9 (Army Regulation 600-9, "The Army Body Composition Program"), and it determines whether soldiers meet body composition standards. Failing means being enrolled in a body composition improvement program. Repeated failure means separation from service.

It's worth understanding how this formula works, because it reveals both the strengths and limitations of trying to estimate body composition without specialized equipment.

The measurement method

The Army uses circumference-based measurements, and the formula differs by gender.

For men, three measurements are taken: neck circumference, waist circumference (at the navel), and height. The formula:

Body Fat % = 86.010 * log10(waist - neck) - 70.041 * log10(height) + 36.76
Enter fullscreen mode Exit fullscreen mode

For women, four measurements are taken: neck circumference, waist circumference (at the narrowest point), hip circumference (at the widest point), and height. The formula:

Body Fat % = 163.205 * log10(waist + hip - neck) - 97.684 * log10(height) - 78.387
Enter fullscreen mode Exit fullscreen mode

These are logarithmic regression equations derived from research comparing tape measurements to underwater weighing (hydrostatic densitometry), which was considered the gold standard at the time.

The measurements must be taken to the nearest half inch. The tape must be level, touching the skin without compressing the tissue. The measurement is taken three times and the average is used. There's a specific protocol for everything -- where on the neck, the exact landmark for the waist, how to position for the hip measurement.

The standards

Maximum allowable body fat varies by age:

Age Group Men Women
17-20 20% 30%
21-27 22% 32%
28-39 24% 34%
40+ 26% 36%

Soldiers who exceed the screening weight based on height-weight tables go through the tape test. If the tape test puts them over the body fat limit, they're flagged.

Why the formula is controversial

It penalizes muscular builds. The formula relies heavily on waist circumference relative to height and neck size. Soldiers who carry significant muscle mass in their legs, chest, and arms but have a larger waist measurement can fail despite being in excellent physical condition. The formula can't distinguish between a waist that's large because of fat and a waist that's large because of a thick core and obliques.

Neck size creates a loophole. Because neck circumference is subtracted in the formula, a larger neck lowers the calculated body fat percentage. This means soldiers with naturally thick necks get a mathematical advantage. Some soldiers reportedly do neck exercises specifically to increase neck circumference before tape tests, which changes the calculated percentage by 1-2 points without any actual change in body composition.

Measurement error is significant. Human error in tape placement can easily vary by half an inch in either direction. On the waist measurement for men, a one-inch difference can swing the calculated body fat by roughly 1.5 percentage points. Whether the soldier just ate, how they're breathing, whether the tape is level -- these small variables add up. The Army tries to control for this with the three-measurement average protocol, but variability between different measurers remains a real issue.

It doesn't correlate perfectly with actual body fat. Research published in the Military Medicine journal has shown that the tape method has a standard error of estimate around 3-4% compared to DEXA scans (the current gold standard). That means a soldier calculated at 24% could actually be anywhere from 20% to 28%. For someone right at the threshold, that error range is the difference between passing and failing.

What the alternatives are

DEXA scanning (Dual-Energy X-ray Absorptiometry) is the gold standard for body composition analysis. It measures fat mass, lean mass, and bone density with high precision. But it requires a machine that costs $50,000 or more and a trained technician. Not practical for screening 450,000 active duty soldiers.

Bioelectrical impedance sends a small electric current through the body. Fat resists the current more than muscle. Consumer scales use this technology, and it's fast and cheap, but accuracy is heavily influenced by hydration, recent exercise, and food intake.

Hydrostatic weighing (underwater weighing) was the original reference standard. It measures body density based on water displacement. Accurate but requires a tank, time, and cooperation from the subject.

Bod Pod (air displacement plethysmography) is similar in principle to underwater weighing but uses air pressure changes instead of water. More comfortable, similarly accurate, but still requires specialized equipment.

The tape method persists because it's free, fast, and requires no equipment beyond a tape measure and a calculator. For an institution that needs to screen hundreds of thousands of people, logistical simplicity outweighs precision.

Running the calculation yourself

If you want to check where you stand using the Army formula:

function armyBodyFat(gender, waist, neck, height, hip = 0) {
  if (gender === 'male') {
    return 86.010 * Math.log10(waist - neck)
         - 70.041 * Math.log10(height) + 36.76;
  } else {
    return 163.205 * Math.log10(waist + hip - neck)
         - 97.684 * Math.log10(height) - 78.387;
  }
}
Enter fullscreen mode Exit fullscreen mode

For a quick calculation without code, I built a tool at zovo.one/free-tools/army-body-fat-calculator that runs the official AR 600-9 formula and shows you where you stand relative to the Army standards by age group.

Understanding this formula matters beyond the military. It's a clear example of how measurement methods involve trade-offs between accuracy, cost, and scalability -- a principle that applies to any system that tries to quantify something as complex as human body composition.


I'm Michael Lip. I build free developer tools at zovo.one. 350+ tools, all private, all free.

Top comments (0)