Barbell plate calculator
Short answer: enter the target weight and the bar weight — the calculator shows which plates to load on each side, the total weight and the difference from the target when an exact set from your plates is impossible. The calculation runs right in your browser and nothing is sent anywhere.
Worked example
Target weight (for example the working weight from the working-weights calculator), Olympic bar → per side 100 kg total 20 kg — 25 kg + 15 kg Check by hand: 100 − 20 = 80; 80 / 2 = 40 per side → 25 + 15 kg.
Calculate plates for the bar
How to use the calculator
- Take a target weight — for example a working weight from the working weights calculator.
- Enter the bar weight. A standard Olympic bar is 20 kg, a women's bar 15 kg.
- Choose a plate set: the gym's standard preset, the minimal one, or your own list of pairs (for example
5; 5; 10; 20). - Press "Calculate".
The result is the plates per side, the total weight and the difference from the target when an exact set is impossible.
Where the algorithm comes from
Plates are loaded symmetrically: the same set on each side. So one side carries (target weight − bar weight) / 2. The greedy algorithm builds that sum from the heaviest plates to the lightest: 25, then 20, 15 and so on, until the remainder is smaller than the smallest plate or the pairs run out.
If an exact weight cannot be loaded — for example a target of 100.6 kg with a 20 kg bar: one side needs 40.3 kg, but 25 + 15 gives only 40 — the calculator shows a total of 100 kg and a difference of 0.6 kg. The algorithm never returns a weight above the target.
How to check it by hand
Example: target weight 100 kg, Olympic bar 20 kg, standard set.
- Per side: 100 − 20 = 80; 80 / 2 = 40 kg.
- Greedily from the heavy end: 25 → remainder 15; 20 does not fit; 15 → remainder 0.
- Per side 25 + 15 kg, total 100 kg — exact.
Limitations
- The greedy algorithm loads from the heavy end; for an unusual set a more accurate combination may exist — compare the difference.
- The weight of clamps and collars (up to 2.5 kg each) is not counted.
- Check the real plate denominations in your gym — the presets are approximate.
- A working weight from the working weights calculator is an estimate: its error carries over into the loading.
- Cheap plates can weigh 2–3 % more or less than their marking.
What to read next
Sources and review date
- Weight plate — Wikipedia. Supports: Standard Olympic plate denominations in kilograms (1.25 / 2.5 / 5 / 10 / 15 / 20 / 25 kg) — the basis of the set presets; the possible deviation of cheap plates from their marking.
- Barbell — Wikipedia. Supports: Olympic bar weights: 20 kg for men, 15 kg for women; clamp weights up to 2.5 kg each — the rationale for the default bar value and the limitations.
Formula version:plate-greedy-v1. Last reviewed: September 2, 2026