How to Calculate Calories Burned

Calories Burned Calculator .cb-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; line-height: 1.6; } .cb-calculator { background: #ffffff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 30px; } .cb-input-group { margin-bottom: 15px; } .cb-input-group label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 14px; } .cb-input-group input, .cb-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .cb-btn { background-color: #27ae60; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; width: 100%; font-size: 18px; font-weight: bold; transition: background 0.3s; } .cb-btn:hover { background-color: #219150; } #result { margin-top: 20px; padding: 15px; background-color: #e8f5e9; border-left: 5px solid #27ae60; font-size: 20px; text-align: center; display: none; } .cb-content h2 { color: #2c3e50; border-bottom: 2px solid #27ae60; padding-bottom: 5px; margin-top: 30px; } .cb-content h3 { color: #2c3e50; margin-top: 20px; } .cb-example { background: #f0f4f8; padding: 15px; border-radius: 4px; margin: 15px 0; border-left: 4px solid #3498db; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { text-align: left; padding: 12px; border-bottom: 1px solid #ddd; } th { background-color: #f2f2f2; }

Calories Burned Calculator

kg lbs
Walking (Moderate Pace) Walking (Brisk Pace) Jogging (Slow) Running (Moderate) Running (Fast) Cycling (Moderate) Cycling (Vigorous) Swimming (Laps) Weight Lifting (Vigorous) Yoga / Stretching Circuit Training High-Intensity Interval Training (HIIT)

How to Calculate Calories Burned: The Science Behind the Math

Whether you are trying to lose weight, maintain your current physique, or simply understand your body's energy expenditure, knowing how to calculate calories burned is essential. The most accurate way to estimate active calorie burn outside of a laboratory setting is by using the MET (Metabolic Equivalent of Task) formula.

The MET Formula

The standard formula used by fitness professionals and researchers to calculate calories burned per minute is:

Calories Burned per Minute = (MET × 3.5 × Weight in kg) / 200

To find the total calories burned for your entire workout, you simply multiply the result by the duration of the activity in minutes.

What is a MET Value?

MET stands for Metabolic Equivalent of Task. It is a unit that estimates the amount of oxygen the body uses during physical activity.

  • 1 MET: The energy you expend while sitting quietly (resting).
  • 3 to 6 METs: Moderate-intensity activities.
  • 6+ METs: Vigorous-intensity activities.

Common Activity MET Values

Activity MET Value
Walking (3 mph) 3.5
Bicycling (12-14 mph) 8.0
Running (6 mph) 9.8
Swimming (Freestyle) 7.0
Yoga (Hatha) 2.5

Calculation Example

Example: Suppose a person weighs 180 lbs (81.6 kg) and goes for a 30-minute run at a moderate pace (approx. 11.5 METs).

1. (11.5 × 3.5 × 81.6) / 200 = 16.42 calories per minute.
2. 16.42 × 30 minutes = 492.6 Calories Burned.

Factors That Affect Your Calorie Burn

While the MET formula is a powerful estimation tool, several individual factors influence how many calories you actually burn:

  • Body Weight: A heavier person requires more energy to move their body, resulting in a higher calorie burn for the same activity compared to a lighter person.
  • Muscle Mass: Muscle tissue is more metabolically active than fat. People with higher muscle percentages burn more calories, even at rest.
  • Intensity: The harder you push yourself (higher heart rate), the higher the MET value for that specific session.
  • Age: As we age, our metabolism tends to slow down due to loss of muscle mass and hormonal changes.

BMR vs. Active Calories

It is important to distinguish between your Basal Metabolic Rate (BMR) and your active calories. BMR is the energy your body needs to function at rest (breathing, circulating blood). The calculator above measures Active Calories, which are the calories burned specifically during the physical activity performed.

function calculateCaloriesBurned() { var weightInput = document.getElementById('weight').value; var weightUnit = document.getElementById('weightUnit').value; var met = parseFloat(document.getElementById('activity').value); var duration = parseFloat(document.getElementById('duration').value); var resultDiv = document.getElementById('result'); if (weightInput === "" || isNaN(weightInput) || weightInput <= 0) { alert("Please enter a valid weight."); return; } if (duration === "" || isNaN(duration) || duration <= 0) { alert("Please enter a valid duration."); return; } var weightInKg = parseFloat(weightInput); // Convert lbs to kg if necessary if (weightUnit === 'lbs') { weightInKg = weightInKg / 2.20462; } // Formula: (MET * 3.5 * weight in kg) / 200 = calories per minute var caloriesPerMinute = (met * 3.5 * weightInKg) / 200; var totalBurned = caloriesPerMinute * duration; resultDiv.style.display = "block"; resultDiv.innerHTML = "Estimated Calories Burned: " + Math.round(totalBurned) + " kcal"; // Scroll to result on mobile resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment