Morgage Loan Calculator

.cal-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .cal-header { text-align: center; margin-bottom: 30px; } .cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .cal-group { margin-bottom: 15px; } .cal-label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .cal-input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .cal-select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; background-color: white; font-size: 16px; } .cal-btn { width: 100%; background-color: #2c3e50; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; margin-top: 10px; transition: background-color 0.3s; } .cal-btn:hover { background-color: #1a252f; } .cal-result-box { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; display: none; } .cal-result-item { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #ddd; } .cal-result-value { font-size: 24px; font-weight: bold; color: #27ae60; } .cal-article { margin-top: 40px; line-height: 1.6; color: #444; } .cal-article h2 { color: #2c3e50; margin-top: 25px; } @media (max-width: 600px) { .cal-grid { grid-template-columns: 1fr; } }

BMR & TDEE Daily Calorie Calculator

Determine your Basal Metabolic Rate and Total Daily Energy Expenditure based on the Mifflin-St Jeor Equation.

Male Female
Sedentary (Little to no exercise) Lightly Active (Exercise 1-3 days/week) Moderately Active (Exercise 3-5 days/week) Very Active (Hard exercise 6-7 days/week) Extra Active (Very hard exercise/physical job)
Basal Metabolic Rate (BMR)
0
Calories per day needed to maintain basic life functions at rest.
Total Daily Energy Expenditure (TDEE)
0
Calories per day needed to maintain your current weight based on activity.
Weight Loss Target (500 Calorie Deficit)
0
Estimated daily calories to lose approximately 0.5kg (1lb) per week.

What is BMR and TDEE?

Understanding your body's energy requirements is the foundation of any successful fitness or weight management plan. Two of the most critical metrics are Basal Metabolic Rate (BMR) and Total Daily Energy Expenditure (TDEE).

BMR is the number of calories your body requires to function while at rest. Even if you were to stay in bed all day, your body still burns calories to keep your heart beating, lungs breathing, and organs functioning. This calculator uses the Mifflin-St Jeor Equation, which is currently considered the most accurate standard for predicting BMR.

TDEE is an estimation of how many calories you burn per day when exercise and daily movement are taken into account. It is calculated by multiplying your BMR by an activity factor. This number represents your "maintenance calories"—the amount you need to eat to stay exactly the same weight.

The Science Behind the Calculation

The formulas used in this tool are as follows:

  • For Men: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) + 5
  • For Women: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) – 161

Realistic Examples

To put this into perspective, let's look at two profiles:

  • Example 1: A 30-year-old male weighing 85kg at 180cm height who is "Moderately Active." His BMR would be roughly 1,830 calories. When multiplied by the 1.55 activity factor, his TDEE becomes 2,836 calories. To lose weight, he should target around 2,336 calories.
  • Example 2: A 25-year-old female weighing 60kg at 165cm height who is "Sedentary." Her BMR is approximately 1,365 calories. With a 1.2 activity factor, her TDEE is 1,638 calories. Her margin for calorie deficit is much smaller than the first example.

How to Use Your Results

If your goal is weight loss, you should aim to consume roughly 500 calories fewer than your TDEE each day. This typically results in a safe loss of about 0.5kg per week. If your goal is muscle gain, you should aim for a "surplus" of 200–500 calories above your TDEE while maintaining a consistent strength training routine.

Remember that these numbers are estimates. Metabolism can be influenced by muscle mass, hormonal health, and genetics. Use these results as a starting point and adjust based on your actual progress over 2-4 weeks.

function calculateMetabolism() { var gender = document.getElementById("gender").value; var age = parseFloat(document.getElementById("age").value); var weight = parseFloat(document.getElementById("weight").value); var height = parseFloat(document.getElementById("height").value); var activity = parseFloat(document.getElementById("activity").value); var resultBox = document.getElementById("resultBox"); if (isNaN(age) || isNaN(weight) || isNaN(height)) { alert("Please enter valid numbers for age, weight, and height."); return; } if (age <= 0 || weight <= 0 || height <= 0) { alert("Please enter values greater than zero."); return; } var bmr = 0; if (gender === "male") { bmr = (10 * weight) + (6.25 * height) – (5 * age) + 5; } else { bmr = (10 * weight) + (6.25 * height) – (5 * age) – 161; } var tdee = bmr * activity; var weightLoss = tdee – 500; document.getElementById("bmrValue").innerText = Math.round(bmr).toLocaleString() + " kcal"; document.getElementById("tdeeValue").innerText = Math.round(tdee).toLocaleString() + " kcal"; document.getElementById("lossValue").innerText = Math.round(weightLoss).toLocaleString() + " kcal"; resultBox.style.display = "block"; resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment