Resting Metabolic Rate Calculator Metric

.rmr-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 600px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; } .rmr-calc-container h2 { text-align: center; color: #2c3e50; margin-bottom: 20px; } .rmr-input-group { margin-bottom: 15px; } .rmr-input-group label { display: block; font-weight: 600; margin-bottom: 5px; } .rmr-input-group input, .rmr-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .rmr-btn { width: 100%; background-color: #27ae60; color: white; padding: 12px; border: none; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .rmr-btn:hover { background-color: #219150; } .rmr-result-box { margin-top: 20px; padding: 15px; background-color: #fff; border-left: 5px solid #27ae60; display: none; } .rmr-result-box h3 { margin: 0 0 10px 0; color: #27ae60; } .rmr-value { font-size: 24px; font-weight: bold; } .rmr-article { margin-top: 30px; line-height: 1.6; } .rmr-article h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 5px; }

RMR Calculator (Metric)

Male Female

Your Estimated RMR

0 Calories/day

This represents the number of calories your body burns while at rest in a 24-hour period.

What is Resting Metabolic Rate (RMR)?

Resting Metabolic Rate (RMR) is the total number of calories your body burns when it is completely at rest. It supports vital body functions such as breathing, circulating blood, organ functions, and basic neurological processes. Unlike Basal Metabolic Rate (BMR), which requires strict clinical conditions (like fasting and total physical stillness), RMR is a more practical estimate for daily use.

The Metric Calculation: Mifflin-St Jeor Equation

This calculator uses the Mifflin-St Jeor equation, which is widely considered the most accurate formula for predicting metabolic rates in the modern population. The formula uses metric units (kilograms and centimeters) to ensure precision.

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

Example Calculation

Imagine a 35-year-old male who weighs 85 kg and stands 180 cm tall:

RMR = (10 × 85) + (6.25 × 180) – (5 × 35) + 5
RMR = 850 + 1125 – 175 + 5
RMR = 1,805 Calories per day

Why Knowing Your RMR Matters

Understanding your RMR is the cornerstone of any weight management plan. If you know how many calories your body naturally burns, you can more effectively calculate your Total Daily Energy Expenditure (TDEE) by adding your physical activity levels. This allows you to create a specific caloric deficit for weight loss or a surplus for muscle gain with scientific accuracy.

function calculateRMR() { var gender = document.getElementById('gender').value; var age = parseFloat(document.getElementById('age').value); var height = parseFloat(document.getElementById('height').value); var weight = parseFloat(document.getElementById('weight').value); var resultBox = document.getElementById('rmrResultBox'); var resultDisplay = document.getElementById('rmrValue'); if (isNaN(age) || isNaN(height) || isNaN(weight) || age <= 0 || height <= 0 || weight <= 0) { alert("Please enter valid positive numbers for all fields."); return; } var rmr = 0; if (gender === "male") { // Mifflin-St Jeor for Men rmr = (10 * weight) + (6.25 * height) – (5 * age) + 5; } else { // Mifflin-St Jeor for Women rmr = (10 * weight) + (6.25 * height) – (5 * age) – 161; } resultDisplay.innerHTML = Math.round(rmr).toLocaleString(); resultBox.style.display = "block"; // Smooth scroll to result resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment