How to Calculate 85 of Max Heart Rate

85% Max Heart Rate Calculator .hr-calculator-container { 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: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 30px; } .hr-input-group { margin-bottom: 20px; } .hr-input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; } .hr-input-group input { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .hr-input-group input:focus { border-color: #ff4757; outline: none; box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.25); } .hr-btn { background-color: #ff4757; color: white; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; transition: background-color 0.2s; } .hr-btn:hover { background-color: #e84148; } .hr-results { margin-top: 25px; padding-top: 20px; border-top: 2px solid #e9ecef; display: none; } .hr-result-item { margin-bottom: 15px; padding: 15px; background: #fff; border-radius: 6px; border-left: 5px solid #ff4757; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .hr-result-label { font-size: 14px; color: #6c757d; text-transform: uppercase; letter-spacing: 1px; } .hr-result-value { font-size: 28px; font-weight: 800; color: #2d3436; } .hr-article { margin-top: 40px; padding: 20px; background: #fff; } .hr-article h2 { color: #2d3436; margin-top: 0; } .hr-article h3 { color: #ff4757; } .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: #f1f1f1; } .highlight-zone { background-color: #fff0f1; font-weight: bold; }

85% Heart Rate Target Calculator

Calculate your maximum heart rate and your 85% intensity threshold.

Default is 85% (High Intensity / Anaerobic Zone)
Estimated Maximum Heart Rate (MHR)
0 BPM
Target Heart Rate (85%)
0 BPM
Vigorous Intensity Zone (77% – 93%)
00 BPM

How to Calculate 85 of Max Heart Rate

Understanding how to calculate 85% of your maximum heart rate (MHR) is crucial for athletes and fitness enthusiasts looking to train in the "Hardcore" or "Anaerobic" zone. Training at this intensity improves your VO2 max and lactate threshold, but it requires accurate calculation to be safe and effective.

The Formula Behind the Calculation

The most common method used to determine heart rate zones is the straightforward age-based formula. While there are more complex methods like the Karvonen formula (which factors in resting heart rate), the standard calculation for MHR is widely accepted for general fitness purposes.

Step 1: Calculate Maximum Heart Rate (MHR)
The standard formula is: 220 - Age = MHR

Step 2: Calculate the Percentage
Multiply your MHR by 0.85 (or your desired percentage).

Example Calculation

Let's look at a realistic example for a 40-year-old individual who wants to find their 85% threshold:

  • MHR: 220 – 40 = 180 BPM (Beats Per Minute)
  • 85% Target: 180 × 0.85 = 153 BPM

Therefore, to train at 85% intensity, this individual should aim for a heart rate of 153 beats per minute.

Why Train at 85% Intensity?

The 85% mark typically sits at the upper end of the aerobic zone and enters the anaerobic zone. Training at this level is often referred to as "vigorous" activity.

Intensity Zone Percentage of Max HR Benefit
Moderate 64% – 76% Fat burning, endurance base
Vigorous (Target) 77% – 93% Cardiovascular fitness, speed, power
Maximum 94% – 100% Short bursts, peak performance

Safety Considerations

Training at 85% of your max heart rate is physically demanding. It is not recommended for beginners to sustain this heart rate for long periods. Always consult with a healthcare professional before starting a high-intensity interval training (HIIT) regimen, especially if you have pre-existing heart conditions.

function calculateHeartRate() { // 1. Get input values var ageInput = document.getElementById('hr_age'); var percentInput = document.getElementById('hr_custom_percent'); var resultsDiv = document.getElementById('hr_results'); var age = parseFloat(ageInput.value); var percentage = parseFloat(percentInput.value); // 2. Validate inputs if (isNaN(age) || age 120) { alert("Please enter a valid age between 1 and 120."); return; } if (isNaN(percentage) || percentage 100) { alert("Please enter a valid percentage between 1 and 100."); return; } // 3. Calculate Maximum Heart Rate (Standard Fox Formula) var maxHeartRate = 220 – age; // 4. Calculate Target Heart Rate var targetHeartRate = maxHeartRate * (percentage / 100); // 5. Calculate Zone Range (Standard Vigorous Zone: 77% to 93%) // This gives context to the 85% number var zoneLower = maxHeartRate * 0.77; var zoneUpper = maxHeartRate * 0.93; // 6. Update HTML elements with results document.getElementById('display_mhr').innerHTML = Math.round(maxHeartRate); document.getElementById('display_percent').innerHTML = Math.round(percentage); document.getElementById('display_target').innerHTML = Math.round(targetHeartRate); document.getElementById('zone_lower').innerHTML = Math.round(zoneLower); document.getElementById('zone_upper').innerHTML = Math.round(zoneUpper); // 7. Show results container resultsDiv.style.display = 'block'; }

Leave a Comment