Work Out Max Heart Rate Calculator

Maximum Heart Rate Estimator

Your Estimated Results

Traditional Formula (Fox)
(220 – Age)
– BPM
Modern Formula (Tanaka)
(208 – 0.7 x Age)
– BPM

Estimated Target Training Zones (based on Tanaka MHR)

  • Moderate Intensity (64% – 76%) – BPM
  • Vigorous Intensity (77% – 93%) – BPM

Note: BPM = Beats Per Minute. These are estimates. Actual max heart rate can vary significantly based on genetics, fitness level, and health conditions.

function calculateMHR() { var ageInput = document.getElementById("mhrAge").value; var age = parseFloat(ageInput); if (isNaN(age) || age 120) { alert("Please enter a valid age between 1 and 120."); document.getElementById("mhrResults").style.display = "none"; return; } // Fox Formula: 220 – Age var foxResult = 220 – age; // Tanaka Formula: 208 – (0.7 * Age) var tanakaResult = 208 – (0.7 * age); // Calculate Zones based on Tanaka (generally considered more accurate for general pop) // Moderate: 64% to 76% var modLower = Math.round(tanakaResult * 0.64); var modUpper = Math.round(tanakaResult * 0.76); // Vigorous: 77% to 93% var vigLower = Math.round(tanakaResult * 0.77); var vigUpper = Math.round(tanakaResult * 0.93); // Update Display document.getElementById("foxMHR").innerHTML = Math.round(foxResult) + " BPM"; document.getElementById("tanakaMHR").innerHTML = Math.round(tanakaResult) + " BPM"; document.getElementById("moderateZone").innerHTML = modLower + " – " + modUpper + " BPM"; document.getElementById("vigorousZone").innerHTML = vigLower + " – " + vigUpper + " BPM"; document.getElementById("mhrResults").style.display = "block"; }

Understanding Your Maximum Heart Rate (MHR)

Your Maximum Heart Rate (MHR) is the highest number of times your heart can beat in one minute during maximum physical exertion. Knowing your MHR is crucial for establishing effective heart rate training zones, allowing you to exercise at the right intensity to achieve your specific fitness goals, whether that's fat burning, aerobic endurance, or peak performance.

How MHR is Calculated

While the most accurate way to determine MHR is a clinical stress test performed under medical supervision, several formulas provide reasonably accurate estimates based on age. It is important to note that MHR generally declines as we get older.

The Traditional Fox Formula

For decades, the most common formula used has been 220 minus your age. While simple to calculate, research has shown this formula can sometimes overestimate MHR in younger people and underestimate it in older adults. For example, a 40-year-old would have an estimated MHR of 180 BPM (220 – 40).

The Modern Tanaka Formula

Many exercise physiologists now prefer the Tanaka formula for a more accurate estimate across different age groups. The formula is 208 – (0.7 x age). Using the same example of a 40-year-old, the calculation would be 208 – (0.7 x 40) = 208 – 28 = 180 BPM. While the result is similar at age 40, the Tanaka formula tends to be more precise for those older or younger than 40.

Using MHR to Determine Training Zones

Once you have your estimated MHR, you can calculate target heart rate zones. The American Heart Association generally defines these zones as percentages of your maximum:

  • Moderate Intensity Activity: About 50% to about 70% of your MHR.
  • Vigorous Intensity Activity: About 70% to about 85% of your MHR.

For a person with an MHR of 180 beats per minute (BPM), a moderate intensity zone would be approximately 90 to 126 BPM, while vigorous intensity would target roughly 126 to 153 BPM.

Important Safety Considerations

Please remember that these calculators provide estimations. Your actual maximum heart rate can be influenced by genetics, specific medications (like beta-blockers which lower heart rate), and overall fitness level. Individuals who are highly fit often have a slightly lower MHR than sedentary individuals of the same age, but their hearts are more efficient.

Before beginning any new vigorous exercise program, especially if you have pre-existing health conditions, it is highly recommended to consult with a healthcare professional.

Leave a Comment