Reverse BMI (What weight would I need to be to be ‘x’ BMI?)

and Reverse BMI Formula

by doctorjeal
1 comment 2 minutes read
Title image for the reverse bmi calculator tool

Reverse BMI Formula

The reverse BMI formula is below and you can use it yourself to calculate your weight range for the desired BMI.

Metric Formula

Minimum Weight

TARGET BMI * ROUNDED((height(M) * height(M)))
Python example for a BMI target of 25 with a height of 1.82 m
25 * round((1.82 * 1.82), 2)

Maximum Weight

(TARGET BMI + 0.9) * ROUNDED((height(M) * height(M)))
Python example for a BMI target of 25 with a height of 1.82 m
(25 + 0.9) * round((1.82 * 1.82), 2)

Imperial Formula

Minimum Weight

TARGET BMI * ROUNDED((height(M) * height(M))) * 2.20462
Python example for a BMI target of 25 with a height of 1.82 m
25 * round((1.82 * 1.82), 2) * 2.20462

Maximum Weight

(TARGET BMI + 0.9) * ROUNDED((height(M) * height(M))) * 2.20462
Python example for a BMI target of 25 with a height of 1.82 m
(25 + 0.9) * round((1.82 * 1.82), 2) * 2.20462

You may also like

1 comment

Body Mass Index (BMI) | DoctorJeal January 19, 2020 - 4:03 pm

[…] Reverse Body Mass index Calculator […]

Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.