{
  "slug": "plate-converter",
  "title": "Plate Weight Converter (kg to lb plates)",
  "category": "Conversions",
  "category_slug": "conversions",
  "tier": 2,
  "summary": "Convert kilogram barbell targets to the nearest standard-plate combination in pounds per side.",
  "description": "This calculator converts a kilogram barbell target into the nearest loadable combination of standard pound plates per side. It multiplies the kilogram input by 2.20462 to get total pounds, subtracts a 45 lb Olympic bar, divides the remainder by two, then applies a greedy algorithm across standard plates (45, 35, 25, 10, 5, 2.5, 1.25 lb) to match the per-side weight without exceeding the target. The output shows which plates to load on each side and the total loaded weight in pounds.",
  "page_url": "https://fitmetriclab.com/en/tools/conversions/plate-converter/",
  "api_url": "https://fitmetriclab.com/api/tools/plate-converter.json",
  "formula": {
    "id": "plate_converter",
    "expression": "\\text{lb} \\approx \\text{kg} \\times 2.20462",
    "variables": [
      {
        "symbol": "w",
        "description": "Weight in kg"
      }
    ]
  },
  "inputs": [
    {
      "id": "kg",
      "label": "Kilograms",
      "type": "number",
      "unit": "kg",
      "default": 75,
      "min": 1,
      "max": 500,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "kg": 75
    },
    "expected_output": "1×45 + 1×10 + 1×5"
  },
  "result_summary_template": "For a target barbell weight of {kg} kg, the greedy plate-loading algorithm selects the largest standard pound plates that fit per side, yielding {result}.",
  "methodology": "Converts kilograms to pounds (1 kg = 2.20462 lb), subtracts a 45 lb Olympic bar, divides the remainder by two, then applies a greedy algorithm over standard pound plates [45, 35, 25, 10, 5, 2.5, 1.25] to find the closest loadable combination per side without exceeding the target.",
  "sources": [
    {
      "label": "International Weightlifting Federation. IWF Technical and Competition Rules & Regulations. 2023.",
      "url": "https://iwf.net/weightlifting_/technical-competition-rules-regulations/"
    },
    {
      "label": "USA Weightlifting. Equipment Specifications. USAW Rulebook. 2023.",
      "url": "https://www.teamusa.org/usa-weightlifting"
    },
    {
      "label": "National Institute of Standards and Technology. NIST Guide to the SI (International System of Units). NIST Special Publication 811. 2008.",
      "url": "https://www.nist.gov/pml/weights-and-measures/publications/nist-guides"
    }
  ],
  "faqs": [
    {
      "question": "Why does the tool sometimes show a difference between target and loaded weight?",
      "answer": "The greedy algorithm only uses standard plate denominations and never exceeds the target. If the remaining load falls between two plate sizes, the smaller size is skipped, leaving a gap of up to 2.5 lb (two 1.25 lb plates). Fractional plates smaller than 1.25 lb are not included."
    },
    {
      "question": "Can I use this calculator for a 15 kg women's Olympic bar?",
      "answer": "No. The code hard-codes a 45 lb (20.4 kg) bar. A 15 kg bar weighs 33 lb, so the per-side calculation would be incorrect. You would need to manually subtract 33 lb from your target before entering it, or use a different tool."
    },
    {
      "question": "What if my gym only stocks 45, 25, 10, and 5 lb plates?",
      "answer": "The calculator will still output a valid combination, but any recommendation for 35, 2.5, or 1.25 lb plates cannot be loaded. In that case, treat those denominations as unavailable and accept a larger discrepancy from the target."
    },
    {
      "question": "Does the tool account for bumper-plate dimensions or collar space?",
      "answer": "No. The algorithm is purely arithmetic and does not model the physical length of the barbell sleeve, the thickness of each plate, or the space required for a collar. Very high plate counts may exceed the loadable length of a standard Olympic bar."
    },
    {
      "question": "Why does the tool use a greedy algorithm instead of an exact solver?",
      "answer": "A greedy approach (largest-first) is computationally simple, mirrors how most lifters load plates in practice, and produces a near-optimal solution for the standard plate set. An exact knapsack solver would add complexity with minimal practical benefit, since the greedy method already stays within 2.5 lb of the target."
    }
  ],
  "related_tools": [
    {
      "slug": "band-resistance",
      "title": "Resistance Band Weight Equivalent Converter",
      "api_url": "https://fitmetriclab.com/api/tools/band-resistance.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/band-resistance/"
    },
    {
      "slug": "weight-converter-kg-lbs",
      "title": "Weight Converter (kg to lbs)",
      "api_url": "https://fitmetriclab.com/api/tools/weight-converter-kg-lbs.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/weight-converter-kg-lbs/"
    },
    {
      "slug": "distance-converter",
      "title": "Distance Converter (km to miles)",
      "api_url": "https://fitmetriclab.com/api/tools/distance-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/distance-converter/"
    }
  ],
  "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."
}