{
  "slug": "weight-change-percent",
  "title": "Weight Change Percentage Calculator",
  "category": "Progress Tracking",
  "category_slug": "progress-tracking",
  "tier": 1,
  "summary": "Calculate the percentage change between two weight measurements for progress tracking.",
  "description": "This calculator computes the percentage change between two weight measurements using the standard percentage-change formula: ((new weight − old weight) / old weight) × 100. It accepts a previous weight and a current weight in kilograms and returns the percentage of weight gain or loss along with the absolute change in kilograms. The arithmetic method is foundational in tracking body-mass trends and applies to any two weight measurements taken at different points in time.",
  "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/weight-change-percent/",
  "api_url": "https://fitmetriclab.com/api/tools/weight-change-percent.json",
  "formula": {
    "id": "weight_change_percent",
    "expression": "\\Delta\\% = \\frac{w_{new} - w_{old}}{w_{old}} \\times 100",
    "variables": [
      {
        "symbol": "w_{old}",
        "description": "Previous weight"
      },
      {
        "symbol": "w_{new}",
        "description": "Current weight"
      }
    ]
  },
  "inputs": [
    {
      "id": "old_weight",
      "label": "Previous Weight",
      "type": "number",
      "unit": "kg",
      "default": 80,
      "min": 20,
      "max": 300,
      "step": 0.1
    },
    {
      "id": "new_weight",
      "label": "Current Weight",
      "type": "number",
      "unit": "kg",
      "default": 78,
      "min": 20,
      "max": 300,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "old_weight": 80,
      "new_weight": 78
    },
    "expected_output": "-2.5%"
  },
  "result_summary_template": "For a previous weight of {old_weight} kg and a current weight of {new_weight} kg, the percentage change in body weight is {result}.",
  "methodology": "The calculator applies the standard percentage-change formula: ((new_weight − old_weight) / old_weight) × 100. This arithmetic method is foundational in mathematics and appears in exercise-science literature when tracking body-mass trends over time.",
  "sources": [
    {
      "label": "National Institute of Standards and Technology. Guide for the Use of the International System of Units (SI). NIST Special Publication 811. 2008.",
      "url": "https://www.nist.gov/pml/special-publication-811"
    },
    {
      "label": "Donnelly JE, et al. American College of Sports Medicine Position Stand: 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/"
    },
    {
      "label": "Hall KD, Kahan S. Maintenance of Lost Weight and Long-Term Management of Obesity. Med Clin North Am. 2018;102(1):183-197.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/29156185/"
    }
  ],
  "faqs": [
    {
      "question": "Why use percentage change instead of absolute weight change?",
      "answer": "Percentage change normalizes the magnitude of change relative to the starting value, making comparisons more meaningful across individuals or time periods with different baseline weights. A 2 kg loss represents a larger proportion of body mass for someone at 50 kg than at 100 kg."
    },
    {
      "question": "How often can weight measurements be taken for meaningful percentage calculations?",
      "answer": "Daily weight measurements may be affected by 1–2 kg fluctuations from hydration, sodium, and digestive contents. Weekly or biweekly intervals taken under consistent conditions (same time of day, similar pre-meal state) tend to yield clearer trends for percentage-change tracking."
    },
    {
      "question": "Does this calculator account for changes in body composition?",
      "answer": "No. The tool computes the percentage change in total body weight without distinguishing between fat mass, lean tissue, or water. Body composition analysis requires additional methods such as DEXA, bioelectrical impedance, or skinfold measurements."
    },
    {
      "question": "What does a negative percentage mean?",
      "answer": "A negative result indicates that the current weight is lower than the previous weight, representing a weight loss. A positive result indicates weight gain. Zero means no change between the two measurements."
    },
    {
      "question": "Can this tool be used for both weight loss and weight gain tracking?",
      "answer": "Yes. The formula computes signed percentage change in either direction. The tool labels the result as 'Weight Gain %' for positive values, 'Weight Loss %' for negative values, and 'No Change' when the two weights are identical."
    }
  ],
  "related_tools": [
    {
      "slug": "time-to-goal-weight",
      "title": "Time-to-Goal Calculator (Weight)",
      "api_url": "https://fitmetriclab.com/api/tools/time-to-goal-weight.json",
      "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/time-to-goal-weight/"
    },
    {
      "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."
}