How to Calculate Your Cardio Heart Rate

Cardio Heart Rate Calculator

Measured when calm and still (standard is 60-100 BPM).
50% – Very Light (Warm up) 60% – Light (Fat Burn) 70% – Moderate (Aerobic/Cardio) 80% – Hard (Anaerobic) 90% – Maximum (Sprints)
Your Target Heart Rate:
0 BPM
function calculateCardioRate() { var age = parseFloat(document.getElementById('age').value); var rhr = parseFloat(document.getElementById('rhr').value); var intensity = parseFloat(document.getElementById('intensity').value) / 100; if (isNaN(age) || age 120) { alert("Please enter a valid age."); return; } if (isNaN(rhr) || rhr 220) { alert("Please enter a valid resting heart rate."); return; } // Karvonen Formula: Target Heart Rate = ((Max Heart Rate − Resting Heart Rate) × %Intensity) + Resting Heart Rate var maxHeartRate = 220 – age; var heartRateReserve = maxHeartRate – rhr; if (heartRateReserve <= 0) { alert("Resting heart rate cannot be higher than maximum heart rate (220 – Age)."); return; } var targetHeartRate = Math.round((heartRateReserve * intensity) + rhr); document.getElementById('thr-result').innerHTML = targetHeartRate + " BPM"; document.getElementById('mhr-info').innerHTML = "Estimated Max HR: " + maxHeartRate + " BPM | Heart Rate Reserve: " + heartRateReserve + " BPM"; document.getElementById('result-box').style.display = "block"; }

How to Calculate Your Cardio Heart Rate: A Complete Guide

Understanding your cardio heart rate is the difference between working out aimlessly and training with scientific precision. Whether you are looking to lose weight, improve your stamina, or prepare for a marathon, knowing your specific target zones ensures you are pushing hard enough to see results without overtraining or risking injury.

The Science: The Karvonen Formula

While many gym machines use a simple percentage of your maximum heart rate (220 – age), fitness experts prefer the Karvonen Formula. This method is more accurate because it accounts for your Resting Heart Rate (RHR), which reflects your current fitness level.

Formula: ((Max HR − Resting HR) × % Intensity) + Resting HR

Heart Rate Training Zones Explained

To use the calculator effectively, you need to choose the right intensity based on your fitness goals:

  • 50% – 60% (Warm Up): Ideal for recovery sessions and improving basic health. It feels very easy.
  • 60% – 70% (Fat Burn): The "sweet spot" for weight loss. At this level, your body primarily uses fat as fuel. You should be able to hold a conversation.
  • 70% – 80% (Aerobic/Cardio): Improves cardiovascular endurance and lung capacity. This is the standard pace for a steady-state run.
  • 80% – 90% (Anaerobic): Enhances your lactic acid threshold. This is hard work; conversation is difficult.
  • 90% – 100% (Maximum): Used for high-intensity interval training (HIIT) or short sprints. Only for advanced athletes.

Step-by-Step Calculation Example

Let's look at a realistic example to see how the math works in practice.

Suppose we have a 40-year-old individual with a Resting Heart Rate of 70 BPM who wants to train in the 70% (Aerobic) zone.

  1. Calculate Max Heart Rate: 220 – 40 = 180 BPM.
  2. Calculate Heart Rate Reserve: 180 (Max) – 70 (Resting) = 110 BPM.
  3. Apply Intensity: 110 × 0.70 = 77.
  4. Add Resting Heart Rate Back: 77 + 70 = 147 BPM.

In this example, the individual should aim for a pulse of 147 beats per minute during their cardio session to stay in the aerobic zone.

Tips for Accuracy

To get the most out of this calculator, ensure you measure your Resting Heart Rate correctly. The best time to do this is first thing in the morning, before you get out of bed or consume caffeine. Place two fingers on your wrist (radial pulse) and count the beats for 60 seconds.

If you are using a wearable device (like an Apple Watch or Garmin), use the "Resting HR" value it provides over a 7-day average for the most consistent results.

Leave a Comment