Calculate Heart Rate by Age

Target Heart Rate Calculator by Age .hr-calculator-wrapper { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .hr-calc-box { background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); margin-bottom: 40px; } .hr-calc-title { text-align: center; margin-bottom: 25px; color: #d32f2f; font-size: 24px; font-weight: 700; } .hr-input-group { margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; } .hr-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 16px; } .hr-input { width: 100%; max-width: 200px; padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 18px; text-align: center; transition: border-color 0.3s; } .hr-input:focus { border-color: #d32f2f; outline: none; } .hr-btn { display: block; width: 100%; max-width: 250px; margin: 20px auto 0; background-color: #d32f2f; color: white; border: none; padding: 15px 20px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; transition: background-color 0.2s; } .hr-btn:hover { background-color: #b71c1c; } .hr-results { margin-top: 30px; border-top: 2px solid #f0f0f0; padding-top: 20px; display: none; } .hr-result-card { background: #fafafa; border-left: 5px solid #d32f2f; padding: 15px; margin-bottom: 15px; border-radius: 4px; } .hr-result-label { font-size: 14px; color: #666; text-transform: uppercase; letter-spacing: 1px; } .hr-result-value { font-size: 28px; font-weight: 800; color: #222; margin: 5px 0; } .hr-result-desc { font-size: 13px; color: #555; font-style: italic; } .hr-content h2 { color: #2c3e50; border-bottom: 2px solid #d32f2f; padding-bottom: 10px; margin-top: 40px; } .hr-content h3 { color: #444; margin-top: 25px; } .hr-content ul { margin-bottom: 20px; } .hr-content li { margin-bottom: 10px; } .hr-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .hr-table th, .hr-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .hr-table th { background-color: #f9f9f9; font-weight: 700; }
Heart Rate Zone Calculator
Maximum Heart Rate (MHR)
0 BPM
The estimated upper limit of what your cardiovascular system can handle during physical activity.
Moderate Intensity Zone (50-70%)
00 BPM
Ideal for weight control, warming up, and building general endurance.
Vigorous Intensity Zone (70-85%)
00 BPM
Best for cardiovascular fitness, increasing speed, and high-intensity interval training.
function calculateHeartZones() { // Get input value var ageInput = document.getElementById('calc_age'); var age = parseFloat(ageInput.value); // Validation if (isNaN(age) || age 120) { alert("Please enter a valid age between 1 and 120."); return; } // Calculations based on AHA standard formula (220 – Age) var maxHR = 220 – age; // Moderate Intensity: 50% to 70% of MHR var modLow = Math.round(maxHR * 0.50); var modHigh = Math.round(maxHR * 0.70); // Vigorous Intensity: 70% to 85% of MHR var vigLow = Math.round(maxHR * 0.70); var vigHigh = Math.round(maxHR * 0.85); // Update DOM document.getElementById('res_max_hr').innerText = maxHR; document.getElementById('res_mod_low').innerText = modLow; document.getElementById('res_mod_high').innerText = modHigh; document.getElementById('res_vig_low').innerText = vigLow; document.getElementById('res_vig_high').innerText = vigHigh; // Show results document.getElementById('calc_results').style.display = 'block'; }

Calculate Heart Rate by Age: A Complete Guide

Understanding your target heart rate is essential for maximizing the benefits of your workouts while ensuring safety. Whether you are aiming to burn fat, build endurance, or improve cardiovascular health, training in the correct heart rate zone is the key to success. This guide and our interactive calculator help you determine your ideal beats per minute (BPM) based on your age.

Why Calculate Heart Rate by Age?

Your heart rate is a reliable objective measure of exercise intensity. As you age, your maximum heart rate (MHR) naturally decreases. Therefore, a "high intensity" workout for a 20-year-old looks very different from one for a 60-year-old. By calculating your heart rate targets based on age, you can:

  • Prevent Overtraining: Avoid pushing your heart beyond safe limits.
  • Maximize Efficiency: Ensure you aren't working too lightly to see results.
  • Target Specific Goals: Different heart rate zones trigger different metabolic reactions, such as fat oxidation vs. glycogen depletion.

Understanding the Formula

The most common and widely accepted method for estimating Maximum Heart Rate (MHR) is the simple subtraction formula:

MHR = 220 – Age

Once your MHR is established, your target training zones are calculated as percentages of this maximum.

Target Heart Rate Zones Explained

Intensity Zone Percentage of MHR Benefit
Moderate Intensity 50% – 70% Improves basic endurance and fat burning. You should be able to talk, but not sing.
Vigorous Intensity 70% – 85% Improves aerobic capacity and cardiovascular performance. Conversation becomes difficult.
Maximum Effort 90% – 100% Only sustainable for short bursts (sprinting). Used for athletic performance training.

How to Measure Your Heart Rate

To verify if you are in the calculated zone during exercise, you need to measure your pulse. You can do this manually or use technology:

  1. Manual Method: Place your index and middle fingers on your wrist (radial artery) or the side of your neck (carotid artery). Count the beats for 10 seconds and multiply by 6 to get your BPM.
  2. Wearable Tech: Smartwatches and chest straps provide real-time continuous monitoring, which is generally more accurate for maintaining specific zones during a workout.

Important Safety Considerations

While the "220 – Age" formula is a standard rule of thumb, it is an estimate. Genetics, fitness level, and medications (such as beta-blockers) can significantly alter your actual maximum heart rate.

If you are just starting an exercise program, have a history of heart conditions, or are taking medication, please consult a healthcare professional before engaging in vigorous activity based on these calculations.

Leave a Comment