{
  "slug": "time-to-goal-weight",
  "title": "Time-to-Goal Calculator (Weight)",
  "category": "Progress Tracking",
  "category_slug": "progress-tracking",
  "tier": 1,
  "summary": "Estimate how many weeks to reach your target weight at a given weekly rate of change.",
  "description": "This calculator estimates the number of weeks required to reach a goal weight based on a consistent weekly rate of weight change. It divides the absolute difference between current weight and goal weight by the user's expected weekly change rate (in kg/week), producing a linear time-to-goal projection in weeks and months. The model assumes a steady rate of change and does not account for metabolic adaptation, plateaus, or non-linear progress common in real-world weight management.",
  "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/time-to-goal-weight/",
  "api_url": "https://fitmetriclab.com/api/tools/time-to-goal-weight.json",
  "formula": {
    "id": "time_to_goal_weight",
    "expression": "n_{weeks} = \\frac{|w_c - w_g|}{|\\Delta_w|}",
    "variables": [
      {
        "symbol": "w_c",
        "description": "Current weight in kg"
      },
      {
        "symbol": "w_g",
        "description": "Goal weight in kg"
      },
      {
        "symbol": "\\Delta_w",
        "description": "Weekly weight change in kg"
      }
    ]
  },
  "inputs": [
    {
      "id": "current_kg",
      "label": "Current Weight",
      "type": "number",
      "unit": "kg",
      "default": 80,
      "min": 30,
      "max": 300,
      "step": 0.1
    },
    {
      "id": "goal_kg",
      "label": "Goal Weight",
      "type": "number",
      "unit": "kg",
      "default": 75,
      "min": 30,
      "max": 300,
      "step": 0.1
    },
    {
      "id": "weekly_change_kg",
      "label": "Weekly Change",
      "type": "number",
      "unit": "kg/wk",
      "default": 0.5,
      "min": 0.1,
      "max": 2,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "current_kg": 80,
      "goal_kg": 75,
      "weekly_change_kg": 0.5
    },
    "expected_output": "10.0 weeks"
  },
  "result_summary_template": "Starting at {current_kg} and targeting {goal_kg} with a weekly change of {weekly_change_kg}, the linear projection estimates {result}.",
  "methodology": "Divides the absolute difference between current and goal weight by the weekly rate of change to produce a linear time estimate: Weeks = |current − goal| / weekly rate. This is a standard arithmetic projection model used in goal-setting frameworks; no single founding reference exists for this basic algebra.",
  "sources": [
    {
      "label": "Hall KD, Chow CC. Estimating changes in free-living energy intake and its confidence interval. Am J Clin Nutr. 2011;94(1):66-74.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/21562087/"
    },
    {
      "label": "Thomas DM, et al. Time to correctly predict the amount of weight loss with dieting. J Acad Nutr Diet. 2014;114(6):857-61.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/24699137/"
    },
    {
      "label": "Donnelly JE, et al. Appropriate physical activity intervention strategies for weight loss and prevention of weight regain for adults. Med Sci Sports Exerc. 2009;41(2):459-71.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/19127177/"
    }
  ],
  "faqs": [
    {
      "question": "Why does the calculator use absolute value in the formula?",
      "answer": "The absolute-value operation ensures the calculation works for both weight loss (current > goal) and weight gain (current < goal). Without it, entering a higher goal than current weight would produce a negative duration."
    },
    {
      "question": "How is the monthly approximation calculated?",
      "answer": "The tool divides the number of weeks by 4.345, the average number of weeks per month over a calendar year (52.14 weeks ÷ 12 months). This provides a more accurate conversion than dividing by 4."
    },
    {
      "question": "Does this account for metabolic adaptation or plateaus?",
      "answer": "No. The calculation assumes a constant weekly rate of change over the entire duration. Real-world weight trajectories often include plateaus, non-linear phases, and changes in energy expenditure that a linear model cannot capture."
    },
    {
      "question": "What weekly rate is typical for weight loss or gain?",
      "answer": "Research literature often cites 0.5–1.0 kg per week (approximately 0.5–1% of body mass per week) as common rates in controlled interventions, though individual results vary widely based on adherence, starting body composition, and energy balance."
    },
    {
      "question": "Can I use this for body-recomposition goals?",
      "answer": "The tool projects scale weight only. Body recomposition—simultaneous fat loss and muscle gain—often occurs with minimal or no change in total body mass, so scale-weight projections may not reflect composition changes."
    }
  ],
  "related_tools": [
    {
      "slug": "weight-change-percent",
      "title": "Weight Change Percentage Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/weight-change-percent.json",
      "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/weight-change-percent/"
    },
    {
      "slug": "pr-progression",
      "title": "Personal Record Progression Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/pr-progression.json",
      "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/pr-progression/"
    },
    {
      "slug": "strength-progression",
      "title": "Strength Progression Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/strength-progression.json",
      "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/strength-progression/"
    }
  ],
  "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."
}