How to Calculate 70 of Max Heart Rate

.hr-calculator-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e4e8; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); color: #333; } .hr-calculator-wrapper h2 { color: #d93025; text-align: center; margin-bottom: 25px; font-size: 28px; } .hr-input-group { margin-bottom: 20px; } .hr-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #444; } .hr-input-group input { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 8px; font-size: 16px; box-sizing: border-box; transition: border-color 0.3s; } .hr-input-group input:focus { border-color: #d93025; outline: none; } .hr-calc-btn { width: 100%; background-color: #d93025; color: white; padding: 15px; border: none; border-radius: 8px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .hr-calc-btn:hover { background-color: #b71c1c; } #hr-result-area { margin-top: 25px; padding: 20px; background-color: #fce8e6; border-radius: 8px; display: none; } .hr-result-box { text-align: center; } .hr-result-value { font-size: 36px; font-weight: 800; color: #d93025; display: block; margin: 10px 0; } .hr-info-text { font-size: 14px; color: #666; line-height: 1.5; } .hr-article-content { margin-top: 40px; line-height: 1.7; color: #444; border-top: 1px solid #eee; padding-top: 30px; } .hr-article-content h3 { color: #222; margin-top: 25px; } .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: #f8f9fa; }

70% Max Heart Rate Calculator

Standard Formula (70% of Max):

0

Beats Per Minute (BPM)

Karvonen Formula (70% Intensity):

0

More accurate as it accounts for your fitness level (Resting HR).

How to Calculate 70% of Your Maximum Heart Rate

Calculating 70% of your maximum heart rate (MHR) is a vital step for athletes and fitness enthusiasts who want to train in the "Aerobic Zone." This intensity level is ideal for building cardiovascular endurance, burning fat efficiently, and improving overall heart health without overstraining the body.

There are two primary ways to find this number: the Simple Formula and the Karvonen Formula.

1. The Simple Formula (Fox Formula)

This is the most common method used by gym equipment and beginners. It is based solely on your age.

  • Step 1: Calculate Max Heart Rate (220 – Age).
  • Step 2: Multiply by 0.70.

Example: If you are 40 years old, your MHR is 180. 70% of 180 is 126 BPM.

2. The Karvonen Formula (Heart Rate Reserve)

Many coaches prefer this method because it includes your Resting Heart Rate (RHR). This makes the calculation specific to your current fitness level.

The Formula: Target HR = ((Max HR − Resting HR) × 0.70) + Resting HR

Example: A 40-year-old with a resting heart rate of 60 BPM.
1. Max HR: 180
2. Heart Rate Reserve: 180 – 60 = 120
3. 70% of Reserve: 120 × 0.70 = 84
4. Target: 84 + 60 = 144 BPM.

Heart Rate Intensity Zones

Zone Intensity Benefit
Zone 1 50-60% Warm-up / Active Recovery
Zone 2 60-70% Fat Burning / Basic Endurance
Zone 3 70-80% Aerobic Capacity / Heart Health
Zone 4 80-90% Anaerobic Threshold / Speed

Why Train at 70% Intensity?

Training at 70% of your max heart rate is often called the "sweet spot." It is intense enough to force the heart and lungs to adapt and get stronger, but sustainable enough that you can perform the exercise for 30 to 60 minutes. It helps in increasing the stroke volume of the heart (the amount of blood pumped per beat) and increases the number of capillaries in the muscles.

function calculateTargetHR() { var age = document.getElementById("hrAge").value; var resting = document.getElementById("hrResting").value; var resultArea = document.getElementById("hr-result-area"); var karvonenDiv = document.getElementById("karvonenResult"); if (!age || age 0) { var hrReserve = maxHR – resting; var karvonen70 = Math.round((hrReserve * 0.70) + parseFloat(resting)); document.getElementById("valKarvonen").innerHTML = karvonen70; karvonenDiv.style.display = "block"; } else { karvonenDiv.style.display = "none"; } resultArea.style.display = "block"; resultArea.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment