FitMetricLab
Categories ▾
Conversions

Plate Weight Converter (kg to lb plates)

Convert kilogram barbell targets to the nearest standard-plate combination in pounds per side.

Last updated:

What this tool does

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.

Inputs
kg
Result
Result

Export Report

How would you like to export your results?

Formula Used
Weight in kg

Spotted something off? Let us know — we update calculators regularly.

This calculator converts a kilogram barbell target weight into the closest achievable plate-loading scheme using standard pound plates on a 45 lb Olympic bar. It assumes plates are loaded symmetrically (both sides identical), uses only standard denominations (45, 35, 25, 10, 5, 2.5, and 1.25 lb plates), and applies a greedy algorithm—selecting the largest plate that fits, then the next largest, and so on—to stay at or below the target without exceeding it.

How Plate Weight Converter works

The tool first converts the kilogram input to pounds (dividing by 0.45359237). It then subtracts the 45 lb bar weight and halves the remainder to find the target weight per side. Starting with 45 lb plates, it calculates how many of each denomination fit into the remaining load, updating the tally until no more plates can be added without overshooting. The output lists the quantity of each plate size per side, the total loaded weight, and the difference from the original target.

The formula

The conversion factor is 1 kg = 2.20462 lb (or 1 lb = 0.45359237 kg). Given a target weight Tkg, the total in pounds is Tlb = Tkg ÷ 0.45359237. Weight per side is (Tlb − 45) ÷ 2. The greedy plate-selection loop iterates over the array [45, 35, 25, 10, 5, 2.5, 1.25], at each step computing n = floor(remaining ÷ plate), adding n plates of that size, and subtracting n × plate from the remaining load.

Where this method is most accurate

The calculator assumes a standard 20 kg (45 lb) Olympic bar and the availability of all seven standard pound plate sizes. In gyms that stock only 45, 25, 10, and 5 lb plates, the tool will still produce a valid answer but may show a larger discrepancy. Fractional plates (0.5 lb, 0.25 lb) are not included, so precision is limited to 1.25 lb increments per side (2.5 lb total). Targets below 45 lb return "0 plates per side" because the bar alone exceeds the goal. For very high loads (>200 kg), the number of large plates may become impractical to load on a single collar.

What this tool does not do

This calculator does not verify whether a given plate combination is safe, whether the user has access to the plates shown, or whether the bar can physically accommodate the total number of plates. It does not account for specialty bars (women's 15 kg bars, trap bars, cambered bars) or bumper plates that may have different outer diameters. The tool does not provide training advice, periodization schemes, or load-progression recommendations. It is a pure unit-conversion and combinatorial utility.

Disclaimer

This tool is for educational and informational purposes only. It is not medical, training, or safety advice. Always verify plate loads independently, use collars to secure plates, and follow gym policies. Consult a qualified strength coach or certified personal trainer before attempting maximal or near-maximal lifts.

Questions

Why does the tool sometimes show a difference between target and loaded weight?
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.
Can I use this calculator for a 15 kg women's Olympic bar?
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.
What if my gym only stocks 45, 25, 10, and 5 lb plates?
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.
Does the tool account for bumper-plate dimensions or collar space?
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.
Why does the tool use a greedy algorithm instead of an exact solver?
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.

Sources & 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.

More in Conversions

View all 10 →