Online Basal Metabolic Rate Bmr Calculator

.bmr-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 30px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.05); color: #333; } .bmr-calculator-container h2 { color: #2c3e50; text-align: center; margin-top: 0; font-size: 28px; } .bmr-input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .bmr-field { display: flex; flex-direction: column; } .bmr-field label { font-weight: 600; margin-bottom: 8px; color: #4a5568; } .bmr-field input, .bmr-field select { padding: 12px; border: 2px solid #edf2f7; border-radius: 8px; font-size: 16px; transition: border-color 0.3s; } .bmr-field input:focus { outline: none; border-color: #4299e1; } .bmr-button { background-color: #48bb78; color: white; border: none; padding: 15px 30px; border-radius: 8px; font-size: 18px; font-weight: bold; cursor: pointer; width: 100%; transition: background-color 0.3s; } .bmr-button:hover { background-color: #38a169; } #bmr-result-box { margin-top: 25px; padding: 20px; border-radius: 8px; background-color: #f7fafc; display: none; text-align: center; } .bmr-value { font-size: 36px; font-weight: 800; color: #2b6cb0; margin: 10px 0; } .bmr-article { margin-top: 40px; line-height: 1.6; color: #4a5568; border-top: 1px solid #eee; padding-top: 30px; } .bmr-article h3 { color: #2d3748; margin-top: 25px; } @media (max-width: 600px) { .bmr-input-grid { grid-template-columns: 1fr; } }

Basal Metabolic Rate (BMR) Calculator

Calculate your daily calorie needs at complete rest using the Mifflin-St Jeor Equation.

Male Female
Your Basal Metabolic Rate is:
0
Calories per day

What is Basal Metabolic Rate (BMR)?

Basal Metabolic Rate (BMR) is the minimum amount of energy (measured in calories) your body requires to perform basic life-sustaining functions while at complete rest. These functions include breathing, blood circulation, cell production, nutrient processing, and temperature regulation. Essentially, if you stayed in bed all day and didn't move a muscle, your BMR is what your body would still burn just to keep you alive.

How the BMR Calculation Works

Our online BMR calculator uses the Mifflin-St Jeor Equation, which is currently considered the most accurate formula for predicting basal metabolic rate in healthy individuals. The formula differs slightly based on biological sex:

  • For Men: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) + 5
  • For Women: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) – 161

Example Calculation

Imagine a 35-year-old male who weighs 80 kg and is 180 cm tall. His calculation would look like this:

(10 × 80) + (6.25 × 180) – (5 × 35) + 5 = 800 + 1125 – 175 + 5 = 1,755 Calories/day

This means he needs approximately 1,755 calories a day just to maintain basic physiological functions before adding any activity or movement.

Why Knowing Your BMR Matters

Whether your goal is weight loss, muscle gain, or weight maintenance, your BMR is the foundation of your nutritional plan. Once you know your BMR, you can multiply it by an "Activity Factor" to find your Total Daily Energy Expenditure (TDEE). If you consume fewer calories than your TDEE, you will lose weight; if you consume more, you will gain weight.

Factors That Affect BMR

  • Muscle Mass: Muscle tissue is more metabolically active than fat. The more muscle you have, the higher your BMR.
  • Age: BMR typically decreases as you age due to loss of lean muscle mass and changes in hormonal and neurological processes.
  • Body Size: Larger people usually have larger internal organs and more fluid volume, requiring more energy to maintain.
  • Genetics and Health: Thyroid levels and other genetic factors can influence how quickly your body burns energy at rest.
function calculateBMR() { var gender = document.getElementById("bmr-gender").value; var age = parseFloat(document.getElementById("bmr-age").value); var weight = parseFloat(document.getElementById("bmr-weight").value); var height = parseFloat(document.getElementById("bmr-height").value); var resultBox = document.getElementById("bmr-result-box"); var display = document.getElementById("bmr-display"); var explanation = document.getElementById("bmr-explanation"); // Validation if (isNaN(age) || isNaN(weight) || isNaN(height) || age <= 0 || weight <= 0 || height <= 0) { alert("Please enter valid positive numbers for age, weight, and height."); return; } var bmr = 0; // Mifflin-St Jeor Equation if (gender === "male") { bmr = (10 * weight) + (6.25 * height) – (5 * age) + 5; } else { bmr = (10 * weight) + (6.25 * height) – (5 * age) – 161; } // Output formatting var finalBmr = Math.round(bmr); display.innerHTML = finalBmr.toLocaleString(); var tdeeSedentary = Math.round(finalBmr * 1.2); explanation.innerHTML = "Based on your inputs, your body burns " + finalBmr.toLocaleString() + " calories daily at rest. If you have a sedentary lifestyle, your maintenance calories (TDEE) are approximately " + tdeeSedentary.toLocaleString() + " calories per day."; // Show result resultBox.style.display = "block"; resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment