Best for metabolizing fat. Sustainable for long durations.
Aerobic/Cardio Zone (70-80%):– bpm
Best for cardiovascular endurance and burning total calories.
function calculateZones() {
var ageInput = document.getElementById('hrAge');
var restingInput = document.getElementById('hrResting');
var resultBox = document.getElementById('resultsDisplay');
var age = parseFloat(ageInput.value);
var rhr = parseFloat(restingInput.value);
// Validation
if (isNaN(age) || age 120) {
alert("Please enter a valid age between 10 and 120.");
return;
}
if (isNaN(rhr) || rhr 200) {
alert("Please enter a valid resting heart rate (typically 40-100 bpm).");
return;
}
// Calculation Logic (Karvonen Formula)
// 1. Calculate Max Heart Rate (MHR) = 220 – Age
var mhr = 220 – age;
// 2. Calculate Heart Rate Reserve (HRR) = MHR – RHR
var hrr = mhr – rhr;
// 3. Calculate Fat Burn Zone (60% to 70%)
// Formula: (HRR * intensity) + RHR
var fatBurnLow = Math.round((hrr * 0.60) + rhr);
var fatBurnHigh = Math.round((hrr * 0.70) + rhr);
// 4. Calculate Aerobic Zone (70% to 80%)
var cardioLow = Math.round((hrr * 0.70) + rhr); // Overlaps slightly or start next beat
var cardioHigh = Math.round((hrr * 0.80) + rhr);
// Display Results
document.getElementById('resMHR').innerText = mhr + " bpm";
document.getElementById('resHRR').innerText = hrr + " bpm";
document.getElementById('resFatBurn').innerText = fatBurnLow + " – " + fatBurnHigh + " bpm";
document.getElementById('resCardio').innerText = (fatBurnHigh + 1) + " – " + cardioHigh + " bpm";
resultBox.style.display = "block";
}
Understanding Heart Rate for Weight Loss
When exercising to lose weight, simply moving your body isn't always enough. The efficiency of your workout depends heavily on the intensity, which is measured by your heart rate. By targeting specific heart rate zones, you can optimize your body's ability to burn fat as a primary fuel source versus burning stored carbohydrates (glycogen).
What is the "Fat Burning Zone"?
The "Fat Burning Zone" typically refers to an exercise intensity where your heart rate is between 60% and 70% of your heart rate reserve. In this zone, the body relies more heavily on fat oxidation for energy. While higher intensity workouts burn more calories overall, lower intensity workouts in this zone derive a higher percentage of those calories from fat.
This calculator uses the Karvonen Formula, which is widely considered more accurate than standard percentage calculations because it factors in your Resting Heart Rate (RHR). This makes the results personalized to your current fitness level.
How to Use This Calculator
Age: Your maximum heart rate naturally declines with age. This is the baseline for all calculations.
Resting Heart Rate (RHR): This is your heart rate when you are completely at rest. The best time to measure this is in the morning, right after waking up but before getting out of bed. A lower RHR generally indicates better cardiovascular fitness.
Interpreting Your Results
Once you calculate your zones, here is how to apply them to your routine:
Fat Burning Zone (60-70%): Ideal for longer duration exercises (walking, slow jogging, easy cycling). You should be able to hold a conversation while exercising in this zone. Aim for 45–60 minutes per session.
Aerobic/Cardio Zone (70-80%): This zone burns more total calories per minute and improves cardiovascular health. While the percentage of fat burned is lower, the total volume of fat burned may be similar due to higher overall energy expenditure. Ideal for shorter, more intense sessions (20–30 minutes).
Why Resting Heart Rate Matters
Standard calculators often just take 220 minus your age and apply a percentage. However, two 40-year-olds can have vastly different fitness levels. One might have a resting heart rate of 50 (very fit), while the other is 80 (sedentary).
The logic used in the tool above (Heart Rate Reserve) accounts for this "floor." By subtracting your resting rate from your max, we find the actual range of beats available for exercise, ensuring that fit individuals train hard enough and beginners don't overexert themselves.