{
  "slug": "plate-calculator-kg",
  "title": "Barbell Plate Calculator (kg)",
  "category": "Strength Training",
  "category_slug": "strength-training",
  "tier": 1,
  "summary": "Calculate the exact plate combination needed per side to hit your target barbell weight in kilograms.",
  "description": "This calculator determines the optimal combination of kilogram plates required on each side of a barbell to reach a specified target weight. It subtracts the bar weight from the total, divides the remainder by two to find the per-side load, then applies a greedy algorithm across standard plate denominations (25, 20, 15, 10, 5, 2.5, and 1.25 kg) to minimize the number of plates needed. The output shows the exact plate stack per side, any remainder that cannot be loaded with the available denominations, and the total weight per side.",
  "page_url": "https://fitmetriclab.com/en/tools/strength-training/plate-calculator-kg/",
  "api_url": "https://fitmetriclab.com/api/tools/plate-calculator-kg.json",
  "formula": {
    "id": "plate_calculator_kg",
    "expression": "P = \\frac{T - B}{2}",
    "variables": [
      {
        "symbol": "T",
        "description": "Target weight in kg"
      },
      {
        "symbol": "B",
        "description": "Bar weight in kg"
      }
    ]
  },
  "inputs": [
    {
      "id": "target_kg",
      "label": "Target Weight",
      "type": "number",
      "unit": "kg",
      "default": 100,
      "min": 20,
      "max": 500,
      "step": 0.5
    },
    {
      "id": "bar_kg",
      "label": "Bar Weight",
      "type": "number",
      "unit": "kg",
      "default": 20,
      "min": 5,
      "max": 25,
      "step": 1
    }
  ],
  "worked_example": {
    "inputs": {
      "target_kg": 100,
      "bar_kg": 20
    },
    "expected_output": "40.00 kg per side"
  },
  "result_summary_template": "For a target weight of {target_kg} using a bar that weighs {bar_kg}, the tool calculates the per-side plate load and optimal stack: {result}.",
  "methodology": "Subtracts bar weight from target total, divides by two for per-side load, then applies a greedy algorithm over the plate set [25, 20, 15, 10, 5, 2.5, 1.25] kg to minimize the number of plates. This arithmetic partition approach is standard in barbell programming and gym software.",
  "sources": [
    {
      "label": "International Weightlifting Federation. IWF Technical and Competition Rules & Regulations. 2023.",
      "url": "https://www.iwf.net/rules-regulations/"
    },
    {
      "label": "International Powerlifting Federation. Technical Rules Book. 2023.",
      "url": "https://www.powerlifting.sport/rules/codes/info/technical-rules"
    },
    {
      "label": "Haff GG, Triplett NT. Essentials of Strength Training and Conditioning (4th ed). Human Kinetics. 2016.",
      "url": "https://www.nsca.com/education/articles/essentials-of-strength-training-and-conditioning-fourth-edition/"
    }
  ],
  "faqs": [
    {
      "question": "Why does the calculator show a remainder?",
      "answer": "A remainder appears when the per-side weight cannot be assembled exactly using the available plate denominations (25, 20, 15, 10, 5, 2.5, and 1.25 kg). Gyms with micro-plates (0.5 kg, 0.25 kg) or change plates can reduce or eliminate remainders."
    },
    {
      "question": "Does the calculator include collar weight?",
      "answer": "No. Standard spring collars add approximately 2.5 kg total (1.25 kg per side), and competition collars add about 5 kg total. To account for collars, subtract their combined weight from your target before entering it into the tool, or add their weight to the bar-weight input."
    },
    {
      "question": "Can I use this calculator with bumper plates?",
      "answer": "Yes, but bumper-plate sets often omit 2.5 kg and 1.25 kg denominations, which will increase the frequency and size of remainders. The tool assumes availability of all seven standard plate weights; missing denominations will be skipped automatically, leaving a larger remainder."
    },
    {
      "question": "How do I handle non-standard bar weights?",
      "answer": "Enter the actual bar weight in the \"Bar Weight\" field. Women's Olympic bars are typically 15 kg, technique bars range from 5–10 kg, and specialty bars (trap-bar, safety-squat) vary between 20 and 32 kg. Weigh the bar if the manufacturer specification is unavailable."
    },
    {
      "question": "Why does the tool use a greedy algorithm instead of optimizing for fewest plates?",
      "answer": "For the standard kilogram plate set, the greedy approach (largest denomination first) already yields the minimum number of plates because the denominations follow a near-optimal structure. More complex optimization would add computational overhead without changing the result in typical gym scenarios."
    }
  ],
  "related_tools": [
    {
      "slug": "plate-calculator-lbs",
      "title": "Barbell Plate Calculator (lbs)",
      "api_url": "https://fitmetriclab.com/api/tools/plate-calculator-lbs.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/plate-calculator-lbs/"
    },
    {
      "slug": "dots-score",
      "title": "DOTS Score Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/dots-score.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/dots-score/"
    },
    {
      "slug": "one-rep-max-brzycki",
      "title": "One-Rep Max Calculator (Brzycki Formula)",
      "api_url": "https://fitmetriclab.com/api/tools/one-rep-max-brzycki.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/one-rep-max-brzycki/"
    }
  ],
  "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."
}