BMI Formula:
From: | To: |
Body Mass Index (BMI) is a simple calculation using a person's height and weight. The formula is BMI = kg/m² where kg is a person's weight in kilograms and m² is their height in meters squared.
The calculator uses the BMI formula:
Where:
Explanation: BMI provides a simple numeric measure of a person's thickness or thinness, allowing health professionals to discuss weight problems more objectively with their patients.
Details: BMI is a screening tool to identify possible weight problems in adults. It can indicate whether a person is underweight, normal weight, overweight, or obese.
Tips: Enter weight in kilograms and height in meters. All values must be valid (weight > 0, height > 0).
Q1: What are the BMI categories?
A: Underweight (BMI < 18.5), Normal weight (18.5-24.9), Overweight (25-29.9), Obesity (BMI ≥ 30).
Q2: Is BMI accurate for everyone?
A: BMI may overestimate body fat in athletes and underestimate it in older persons who have lost muscle mass.
Q3: How to convert height from cm to m?
A: Divide height in centimeters by 100 (e.g., 175 cm = 1.75 m).
Q4: How to convert weight from pounds to kg?
A: Divide weight in pounds by 2.205 (e.g., 150 lbs = 68 kg).
Q5: What's the Python code for BMI calculation?
A: def calculate_bmi(weight, height): return round(weight / (height ** 2), 1)