Calculating Max Heart Rate by Age and Gender

Max Heart Rate & Zone Calculator

Optimize your training intensity based on age and gender

Male Female

Your Personalized Results

Estimated Max Heart Rate: bpm
Zone Intensity Range (BPM)
Zone 1: Recovery 50% – 60%
Zone 2: Aerobic 60% – 70%
Zone 3: Tempo 70% – 80%
Zone 4: Threshold 80% – 90%
Zone 5: Anaerobic 90% – 100%

*Calculated using the Tanaka formula for improved accuracy.

Understanding Max Heart Rate (MHR)

Your Maximum Heart Rate (MHR) is the highest number of beats per minute your heart can safely reach during maximum physical exertion. Knowing this number is critical for athletes and fitness enthusiasts because it allows you to calculate "Target Heart Rate Zones," ensuring your workout matches your fitness goals—whether that is fat burning, endurance building, or peak performance training.

Formulas Used for Calculation

While the traditional "220 – Age" formula is widely known, modern exercise science suggests more refined equations based on gender and age-specific data:

  • Fox Formula: 220 – Age (Standard, widely used but less accurate for older adults).
  • Tanaka Formula: 208 – (0.7 × Age). This is generally considered more accurate for healthy, active adults.
  • Gulati Formula: 206 – (0.88 × Age). Specifically designed for women's physiological response to cardiovascular stress.

Target Heart Rate Zones Explained

Working within specific zones ensures you are using the correct energy systems in the body:

  • Zone 1 (50-60%): Very light. Ideal for warm-ups, active recovery, and beginners starting a fitness journey.
  • Zone 2 (60-70%): Weight Management. This is the "fat-burning" zone where the body primarily uses stored fat for fuel. Perfect for long, steady endurance activities.
  • Zone 3 (70-80%): Aerobic Base. Improves cardiovascular fitness and lung capacity. You will breathe harder but can still speak short sentences.
  • Zone 4 (80-90%): Anaerobic Threshold. High intensity. This builds speed and increases your lactic acid threshold.
  • Zone 5 (90-100%): Maximum Effort. Sprinting and HIIT. This is only sustainable for very short periods (under 2 minutes).

Example Calculation

If you are a 40-year-old male, using the Tanaka formula:

MHR = 208 – (0.7 × 40)
MHR = 208 – 28
MHR = 180 BPM

For this individual, a Zone 2 workout (60-70%) would require keeping the heart rate between 108 and 126 beats per minute.

Important Note: These are estimates. Individual factors like genetics, medication (especially beta-blockers), and fitness level can significantly alter these numbers. Always consult with a physician before starting a new vigorous exercise program.

function calculateMHR() { var age = document.getElementById('userAge').value; var gender = document.getElementById('userGender').value; var resultsDiv = document.getElementById('resultsArea'); var mhrLabel = document.getElementById('mhrValue'); if (age === "" || age 120) { alert("Please enter a valid age between 1 and 120."); return; } var mhr; // Using Tanaka Formula as default: 208 – (0.7 * age) // If female, use Gulati: 206 – (0.88 * age) as a secondary check, // but Tanaka is the gold standard for general use in this calculator. if (gender === "female") { // Gulati is often preferred for women mhr = 206 – (0.88 * parseFloat(age)); } else { mhr = 208 – (0.7 * parseFloat(age)); } mhr = Math.round(mhr); // Display MHR mhrLabel.innerText = mhr; // Calculate Zones document.getElementById('zone1').innerText = Math.round(mhr * 0.50) + " – " + Math.round(mhr * 0.60); document.getElementById('zone2').innerText = Math.round(mhr * 0.60) + " – " + Math.round(mhr * 0.70); document.getElementById('zone3').innerText = Math.round(mhr * 0.70) + " – " + Math.round(mhr * 0.80); document.getElementById('zone4').innerText = Math.round(mhr * 0.80) + " – " + Math.round(mhr * 0.90); document.getElementById('zone5').innerText = Math.round(mhr * 0.90) + " – " + mhr; // Show results resultsDiv.style.display = "block"; // Smooth scroll to results resultsDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment