Cash Denomination Breakdown Generator
Handing over the fewest coins is a greedy habit that happens to be correct — for sterling. Take the largest denomination that fits, repeat, and you cannot do better. That is a property of the denominations rather than of the method: with coins of 1, 3 and 4, greedy makes 6 as 4+1+1 while 3+3 is shorter. This does the breakdown and proves it optimal against every alternative.
What this generator does
Takes the largest denomination that fits at each step until the amount is covered, then compares the piece count against the true minimum computed by dynamic programming over every combination.
How to use this tool
- Enter an amount in pence.
- Read the breakdown of notes and coins.
- Check the piece count — it is the fewest possible.
- Note why that is true of sterling and not of every currency.
Understanding the controls
- Amount
- In pence, up to ten thousand pounds. The breakdown uses the standard sterling set from £50 down to 1p.
Common use cases
- Working out a till float or a change breakdown
- Teaching the change-making problem with a real currency
- Showing why greedy algorithms need the right denominations
- Producing exact coin breakdowns for a cash-handling exercise
- Checking a change calculation against a provable minimum
How this generator works
The greedy method takes as many of the largest denomination as fit, then moves down. For a canonical system like sterling that gives the fewest pieces, which is a fact about the denominations rather than about the method. Before display the pieces are re-totalled against the amount, and the count is compared against the genuine minimum computed by dynamic programming across every possible combination — so optimality is verified rather than assumed from the currency.
Randomness and fairness
Nothing here is random. An amount has exactly one greedy breakdown. This is arithmetic for planning and teaching, not financial advice, and it knows nothing about your circumstances.
For how randomness is produced across the whole site, see how Generate Random works.
Limitations and good to know
- Only sterling denominations are offered; a currency with a non-canonical set would need the dynamic-programming answer instead of the greedy one.
- Unlimited pieces of each denomination are assumed, so a till that has run out of fives is a different problem.
- Amounts above ten thousand pounds skip the optimality check, since the verification grows with the amount.
- Notes and coins are treated identically, though a real till has practical limits on both.
Privacy and your data
The breakdown is computed in your browser and the amount you enter is never transmitted, stored or included in analytics.
Related generators
- Money Maths Question GeneratorPounds-and-pence word problems — change, totals and splitting a bill — with worked steps.
- Percentage Split GeneratorSplits 100% into three random parts that always add up correctly.
- Bill Split CalculatorSplits a bill so the shares add back up to it exactly, and decides fairly who takes the penny that will not divide.
- VAT Calculation GeneratorAdds or extracts VAT in whole pennies, with the net and the tax always summing to the gross exactly and the round trip checked.