Tested tool guide
Tested browser tools
Checked August 16, 2026
What Body Fat Percentage Calculator does, with a checked example
This calculator estimates body fat percentage from tape measurements and height, using the U.S. Navy circumference method, the same equations the armed services use for their tape test. Men enter height, neck, and waist measured at the navel; women enter height, neck, waist at its narrowest point, and hips at their widest. The result is a prediction, not a measurement: circumference equations estimate body density and carry an error band of several percentage points against DEXA or hydrostatic weighing. What surprises most people is how much tape placement matters - an inch of error moves the answer one to two points.
Worked example
A concrete input and expected output from the current implementation.
Input
Female, 65 in tall, neck 12 in, waist 28 in, hip 38 in
->
Expected output
Estimated body fat: 27.3%
The women's Navy equation is 163.205 * log10(waist + hip - neck) - 97.684 * log10(height) - 78.387, all in inches. Here waist + hip - neck = 54, log10(54) = 1.7324, and log10(65) = 1.8129, so the result is 163.205 * 1.7324 - 97.684 * 1.8129 - 78.387 = 282.735 - 177.093 - 78.387 = 27.26, which rounds to 27.3%.