Max Heart Rate Exercise Calculator

Max Heart Rate & Training Zone Calculator .mhr-calculator-container { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background-color: #ffffff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .mhr-header { text-align: center; margin-bottom: 30px; border-bottom: 2px solid #ff4757; padding-bottom: 15px; } .mhr-header h1 { color: #2f3542; margin: 0; font-size: 28px; } .mhr-header p { color: #747d8c; margin-top: 10px; } .mhr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .mhr-grid { grid-template-columns: 1fr; } } .mhr-input-group { display: flex; flex-direction: column; } .mhr-input-group label { font-weight: 600; color: #2f3542; margin-bottom: 8px; } .mhr-input-group input, .mhr-input-group select { padding: 12px; border: 1px solid #ced6e0; border-radius: 6px; font-size: 16px; transition: border-color 0.3s; } .mhr-input-group input:focus { border-color: #ff4757; outline: none; } .mhr-btn { width: 100%; padding: 15px; background-color: #ff4757; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; margin-bottom: 20px; } .mhr-btn:hover { background-color: #ff6b81; } .mhr-results { background-color: #f1f2f6; padding: 20px; border-radius: 8px; display: none; } .mhr-results.visible { display: block; } .main-result { text-align: center; margin-bottom: 25px; } .main-result h3 { color: #2f3542; margin-bottom: 5px; } .big-number { font-size: 48px; font-weight: 800; color: #ff4757; } .bpm-label { font-size: 16px; color: #747d8c; } .zone-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: white; border-radius: 6px; overflow: hidden; } .zone-table th { background-color: #2f3542; color: white; padding: 12px; text-align: left; } .zone-table td { padding: 12px; border-bottom: 1px solid #dfe4ea; } .zone-row-1 { border-left: 5px solid #a4b0be; } .zone-row-2 { border-left: 5px solid #7bed9f; } .zone-row-3 { border-left: 5px solid #eccc68; } .zone-row-4 { border-left: 5px solid #ffa502; } .zone-row-5 { border-left: 5px solid #ff4757; } .article-content { margin-top: 40px; line-height: 1.6; color: #2f3542; } .article-content h2 { color: #ff4757; margin-top: 30px; } .article-content h3 { color: #2f3542; border-bottom: 1px solid #ced6e0; padding-bottom: 10px; } .article-content ul { padding-left: 20px; } .article-content li { margin-bottom: 10px; }

Max Heart Rate & Training Zones

Calculate your target heart rate zones for optimal cardio training.

Enter for Karvonen Method (more accurate)
Fox Formula (220 – Age) – Standard Tanaka Formula (208 – 0.7 × Age) – Modern

Estimated Maximum Heart Rate

0
Beats Per Minute (BPM)
Zone Intensity Target Range (BPM) Benefit

*Calculations based on Standard logic.

Why Calculate Your Max Heart Rate?

Understanding your Maximum Heart Rate (MHR) is crucial for exercising safely and effectively. It serves as the baseline for determining your heart rate training zones. By training in specific zones, you can tailor your workouts to achieve specific goals, such as burning fat, improving cardiovascular endurance, or increasing peak athletic performance.

The Formulas Explained

Fox Formula (Standard)

The most common and simplest formula, often seen on gym equipment. It is calculated as:

MHR = 220 – Age

Tanaka Formula (Modern)

Published in 2001, this formula is widely considered more accurate for adults over age 40. It accounts for the non-linear decline in heart rate as we age:

MHR = 208 – (0.7 × Age)

Karvonen Method (Heart Rate Reserve)

If you input your Resting Heart Rate (RHR), this calculator automatically switches to the Karvonen method for the training zones. This is highly recommended for athletes because it considers your current fitness level.

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

Understanding the 5 Heart Rate Zones

  • Zone 1 (Very Light): 50-60% intensity. Good for warm-ups, cool-downs, and active recovery. Aids in recovery and prepares the body for training.
  • Zone 2 (Light): 60-70% intensity. The "Fat Burning" zone. You should be able to hold a conversation comfortably. Improves basic endurance and fat metabolism.
  • Zone 3 (Moderate): 70-80% intensity. The aerobic zone. Improves blood circulation and skeletal muscle efficiency. Breathing becomes heavier.
  • Zone 4 (Hard): 80-90% intensity. The anaerobic threshold. Improves high-speed endurance and tolerance to lactic acid. Conversation is difficult.
  • Zone 5 (Maximum): 90-100% intensity. Peak performance training for very short intervals. Improves sprint speed and neuromuscular reaction.
Safety Note: These figures are estimations. Consult a physician before starting any new exercise program, especially if you have a history of heart conditions or high blood pressure.
function calculateHeartRate() { // 1. Get Inputs var ageInput = document.getElementById("inputAge").value; var rhrInput = document.getElementById("inputRestingHR").value; var formula = document.getElementById("inputFormula").value; var resultsArea = document.getElementById("resultsArea"); var displayMHR = document.getElementById("displayMHR"); var methodDisplay = document.getElementById("methodUsed"); var tableBody = document.getElementById("zoneTableBody"); // 2. Validation if (!ageInput || isNaN(ageInput) || ageInput 120) { alert("Please enter a valid age between 10 and 120."); return; } var age = parseFloat(ageInput); var rhr = 0; var useKarvonen = false; if (rhrInput && !isNaN(rhrInput) && rhrInput > 30 && rhrInput < 200) { rhr = parseFloat(rhrInput); useKarvonen = true; } // 3. Calculate MHR var mhr = 0; if (formula === "tanaka") { mhr = 208 – (0.7 * age); } else { // Fox default mhr = 220 – age; } mhr = Math.round(mhr); // 4. Calculate Zones // Zones configuration: [min%, max%, class, label, desc] var zonesConfig = [ {min: 0.50, max: 0.60, class: "zone-row-1", label: "Zone 1 (Warm Up)", desc: "Recovery & Health"}, {min: 0.60, max: 0.70, class: "zone-row-2", label: "Zone 2 (Fat Burn)", desc: "Basic Endurance"}, {min: 0.70, max: 0.80, class: "zone-row-3", label: "Zone 3 (Aerobic)", desc: "Cardio Fitness"}, {min: 0.80, max: 0.90, class: "zone-row-4", label: "Zone 4 (Anaerobic)", desc: "High Intensity"}, {min: 0.90, max: 1.00, class: "zone-row-5", label: "Zone 5 (VO2 Max)", desc: "Peak Performance"} ]; var tableHTML = ""; for (var i = 0; i < zonesConfig.length; i++) { var zone = zonesConfig[i]; var minBPM, maxBPM; if (useKarvonen) { // Target HR = ((MHR – RHR) * %Intensity) + RHR var hrr = mhr – rhr; minBPM = Math.round((hrr * zone.min) + rhr); maxBPM = Math.round((hrr * zone.max) + rhr); } else { // Standard % of MHR minBPM = Math.round(mhr * zone.min); maxBPM = Math.round(mhr * zone.max); } tableHTML += ""; tableHTML += "" + zone.label + ""; tableHTML += "" + (zone.min * 100) + "% – " + (zone.max * 100) + "%"; tableHTML += "" + minBPM + " – " + maxBPM + " bpm"; tableHTML += "" + zone.desc + ""; tableHTML += ""; } // 5. Update UI displayMHR.innerText = mhr; tableBody.innerHTML = tableHTML; if (useKarvonen) { methodDisplay.innerText = "Heart Rate Reserve (Karvonen)"; } else { methodDisplay.innerText = "Standard Maximum Heart Rate percentage"; } resultsArea.classList.add("visible"); // Scroll to results on mobile resultsArea.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment