{
  "slug": "tdee-calculator",
  "title": "TDEE Calculator",
  "category": "Body Composition",
  "category_slug": "body-composition",
  "tier": 1,
  "summary": "Estimate total daily energy expenditure by scaling BMR with an activity factor.",
  "description": "This calculator estimates Total Daily Energy Expenditure (TDEE) by multiplying Basal Metabolic Rate by an activity factor ranging from 1.2 (sedentary) to 1.9 (very active). It requires a BMR value in kilocalories and a selected activity multiplier, then returns an estimated total daily caloric expenditure that accounts for both resting metabolism and physical activity. The linear scaling method reflects population-average activity coefficients established in early metabolic research and remains widely used in clinical nutrition and fitness programming.",
  "page_url": "https://fitmetriclab.com/en/tools/body-composition/tdee-calculator/",
  "api_url": "https://fitmetriclab.com/api/tools/tdee-calculator.json",
  "formula": {
    "id": "tdee",
    "expression": "\\text{TDEE} = \\text{BMR} \\times m, \\quad m \\in [1.2, 1.9]",
    "variables": [
      {
        "symbol": "\\text{BMR}",
        "description": "Basal metabolic rate in kcal"
      },
      {
        "symbol": "m",
        "description": "Activity multiplier"
      }
    ]
  },
  "inputs": [
    {
      "id": "bmr",
      "label": "BMR",
      "type": "number",
      "unit": "kcal",
      "default": 1700,
      "min": 500,
      "max": 4000,
      "step": 10
    },
    {
      "id": "activity_multiplier",
      "label": "Activity Multiplier",
      "type": "select",
      "unit": null,
      "default": 1.55,
      "options": [
        {
          "label": "Sedentary (1.20)",
          "value": 1.2
        },
        {
          "label": "Light (1.375)",
          "value": 1.375
        },
        {
          "label": "Moderate (1.55)",
          "value": 1.55
        },
        {
          "label": "Active (1.725)",
          "value": 1.725
        },
        {
          "label": "Very Active (1.9)",
          "value": 1.9
        }
      ]
    }
  ],
  "worked_example": {
    "inputs": {
      "bmr": 1700,
      "activity_multiplier": 1.55
    },
    "expected_output": "2,635 kcal"
  },
  "result_summary_template": "Multiplying a BMR of {bmr} kcal by an activity multiplier of {activity_multiplier} yields a total daily energy expenditure estimate of {result}.",
  "methodology": "TDEE = BMR × activity multiplier. This linear scaling method multiplies basal metabolic rate by a coefficient (1.2–1.9) to estimate total daily energy expenditure. Activity multipliers were standardized in early metabolic research and are widely used in clinical and fitness contexts.",
  "sources": [
    {
      "label": "Institute of Medicine. Dietary Reference Intakes for Energy, Carbohydrate, Fiber, Fat, Fatty Acids, Cholesterol, Protein, and Amino Acids. National Academies Press, 2005.",
      "url": "https://www.nap.edu/catalog/10490/dietary-reference-intakes-for-energy-carbohydrate-fiber-fat-fatty-acids-cholesterol-protein-and-amino-acids"
    },
    {
      "label": "FAO/WHO/UNU. Human energy requirements: Report of a Joint FAO/WHO/UNU Expert Consultation. Food and Agriculture Organization, 2004.",
      "url": "https://www.fao.org/3/y5686e/y5686e00.htm"
    },
    {
      "label": "Manore MM, Thompson JL. Energy requirements of the athlete: assessment and evidence of energy efficiency. In: Burke L, Deakin V, eds. Clinical Sports Nutrition. 5th ed. McGraw-Hill, 2015.",
      "url": "https://www.ncbi.nlm.nih.gov/books/NBK209049/"
    }
  ],
  "faqs": [
    {
      "question": "What is the difference between BMR and TDEE?",
      "answer": "BMR (Basal Metabolic Rate) represents the calories expended at complete rest to maintain vital functions. TDEE (Total Daily Energy Expenditure) includes BMR plus all activity-related energy costs—exercise, occupational movement, and non-exercise activity thermogenesis (NEAT). The multiplier bridges the two by scaling BMR upward based on estimated activity level."
    },
    {
      "question": "How are the activity multiplier values determined?",
      "answer": "The five preset multipliers (1.2, 1.375, 1.55, 1.725, 1.9) derive from early metabolic research categorizing typical physical activity patterns. They represent population averages for sedentary through very active lifestyles. Individual energy expenditure may vary based on occupation, exercise frequency, NEAT, and metabolic efficiency."
    },
    {
      "question": "Can TDEE change over time?",
      "answer": "Yes. TDEE can shift with changes in body weight, lean mass, activity patterns, age, and metabolic adaptation. Weight loss may reduce both BMR and activity-related expenditure. Increased training volume or occupational demands may elevate the appropriate activity multiplier. Regular re-assessment helps track these shifts."
    },
    {
      "question": "Why does this calculator ask for BMR instead of calculating it?",
      "answer": "This tool focuses exclusively on the activity-multiplier step. BMR can be estimated via multiple equations (Mifflin-St Jeor, Harris-Benedict, Katch-McArdle) or measured via indirect calorimetry. By accepting BMR as an input, the calculator remains method-agnostic and allows users to apply whichever BMR estimation or measurement they prefer."
    },
    {
      "question": "What if my activity level varies day to day?",
      "answer": "The preset multipliers assume consistent average activity. For variable schedules, some users calculate TDEE separately for different day types (training vs. rest) or select the multiplier closest to their weekly average. More granular tracking—like wearable-derived activity data—can provide higher resolution, though adherence and measurement error remain considerations."
    }
  ],
  "related_tools": [
    {
      "slug": "bmi-calculator",
      "title": "BMI Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/bmi-calculator.json",
      "page_url": "https://fitmetriclab.com/en/tools/body-composition/bmi-calculator/"
    },
    {
      "slug": "bmr-mifflin",
      "title": "BMR Calculator (Mifflin-St Jeor)",
      "api_url": "https://fitmetriclab.com/api/tools/bmr-mifflin.json",
      "page_url": "https://fitmetriclab.com/en/tools/body-composition/bmr-mifflin/"
    },
    {
      "slug": "bmr-harris-benedict",
      "title": "BMR Calculator (Harris-Benedict)",
      "api_url": "https://fitmetriclab.com/api/tools/bmr-harris-benedict.json",
      "page_url": "https://fitmetriclab.com/en/tools/body-composition/bmr-harris-benedict/"
    }
  ],
  "last_updated": "2026-04-22",
  "price": {
    "value": 0,
    "currency": "USD"
  },
  "runs_in_browser": true,
  "disclaimer": "Educational estimate produced from a published formula. Not medical, nutritional, or training advice. Calculations are deterministic — apply the formula to the inputs to reproduce the result."
}