Simplify Your Workflow: Search MiniWebtool.
Add Extension
> Coin Word Problem Solver

Coin Word Problem Solver

Solve classic coin word problems step by step — "I have N coins totaling $V in nickels and dimes", "twice as many quarters as dimes", three-coin mixtures with count relationships, and "fewest coins to make $V". Sets up the algebra, solves the linear system, animates coin stacks, and verifies the answer.

Coin Word Problem Solver
Quick examples →
🪙
1 Pick the puzzle type
Four canonical patterns cover most textbook coin problems.
US ($), UK (£), or Euro (€).
2 Choose the coin denominations
3 Enter the totals
How many coins in total.
e.g. 1.40 for $1.40, or 140¢.
3 Enter the relation and value
2 for "twice", 3 for "three times", 0.5 for "half".
How many more (or fewer) of A than B.
Total monetary value of all coins.
3 Totals and ratio
3 Target value & denominations
The amount you need to make exactly. Decimal or e.g. 87¢.
By default, uses the standard coins of the chosen currency.
e.g. 1,3,4 — classic non-canonical example where greedy fails.

Embed Coin Word Problem Solver Widget

About Coin Word Problem Solver

Coin word problems are one of the most common ways algebra textbooks teach you to translate a sentence like "I have 20 coins worth $1.40 in nickels and dimes" into a pair of equations that you can solve. They look harmless, but they're the gateway to systems of linear equations, substitution, and elimination. This solver covers every common pattern: count plus value, count ratios, three-coin mixtures with a relation, and the classic "fewest coins to make a value" puzzle. It writes the algebra step by step, so you can see exactly how the words become equations.

What you can solve here

  • Count + value: "I have N coins of two denominations totaling V dollars. How many of each?"
  • Value + ratio: "I have K times as many of coin A as coin B; total value is V. How many of each?"
  • Three-coin mixture: "N coins of three denominations total V; the number of coin C is K times the number of coin B."
  • Fewest coins: "What is the smallest number of coins that make exactly V?" — solved by dynamic programming so the answer is truly optimal, even for non-canonical denomination sets where greedy fails.

The two universal equations

Count equation

\(x + y + z + \dots = N\)

The number of each coin adds up to the total number of coins.

Value equation

\(d_1 x + d_2 y + d_3 z + \dots = V\)

Each coin's denomination times its count, summed, equals the total value (in minor units).

Relation (optional)

\(x = K y\) or \(x = y + M\)

Many problems add a third equation tying one count to another.

How to use this solver

  1. Pick a problem pattern that matches what your textbook (or boss, or kid's homework) is asking.
  2. Choose the currency and the specific coin denominations involved.
  3. Type the known totals — coin count, total value, and any ratio or offset between counts.
  4. Hit "Solve the coin problem". The result panel shows the count of each denomination, animated coin stacks, the equations you set up, and a step-by-step derivation.

Worked example — nickels and dimes

Problem: I have 20 coins totaling $1.40 in nickels and dimes. How many of each?

Setup: Let \(x\) be the number of dimes and \(y\) be the number of nickels. Each dime is worth 10¢ and each nickel is worth 5¢, so:

  1. \(x + y = 20\)
  2. \(10x + 5y = 140\) (cents)

Substitute \(y = 20 - x\) into the second equation: \(10x + 5(20 - x) = 140\) → \(5x + 100 = 140\) → \(x = 8\). So 8 dimes and 12 nickels. Verify: \(10(8) + 5(12) = 140\) ✓ and \(8 + 12 = 20\) ✓.

Why "fewest coins" can be tricky

For US, UK, and Euro coins, the greedy algorithm — pick the largest coin that fits, then repeat — always gives the optimal answer. But this is not true for every denomination set. The classic counter-example is denominations {1, 3, 4} making 6: greedy gives 3 coins (4+1+1) but the optimum is 2 coins (3+3). This solver uses dynamic programming, which is guaranteed to find the true minimum regardless of the coin set. Enable "Use custom denominations" and try 1, 3, 4 for value 6 to see the difference live.

Coin denominations by currency

CurrencyStandard coins
USD ($)1¢ penny, 5¢ nickel, 10¢ dime, 25¢ quarter, 50¢ half-dollar, $1 dollar
GBP (£)1p, 2p, 5p, 10p, 20p, 50p, £1, £2
EUR (€)1¢, 2¢, 5¢, 10¢, 20¢, 50¢, €1, €2

FAQ

What is a coin word problem?

A coin word problem describes a collection of coins of two or more denominations using sentences about the total count of coins, the total monetary value, and ratios between coin counts. It translates into a small system of linear equations that you can solve for the count of each denomination.

How do I solve "I have 20 coins totaling $1.40 in nickels and dimes"?

Let \(x\) be the number of dimes and \(y\) be the number of nickels. Then \(x + y = 20\) and \(10x + 5y = 140\). Subtract 5 times the first equation from the second to get \(5x = 40\), so \(x = 8\) dimes and \(y = 12\) nickels.

What does "twice as many quarters as dimes" mean?

It means the count of quarters equals two times the count of dimes. If you have \(d\) dimes, you have \(2d\) quarters. Substitute into the total-value equation to get a single-variable equation in \(d\), then solve.

What is the fewest-coins problem?

Given a target value and a set of coin denominations, find the smallest number of coins that sum exactly to the target. For US coins the greedy strategy works, but for non-canonical denomination sets greedy can be wrong. The solver uses dynamic programming to find the true minimum every time.

Why does my problem have no whole-number solution?

The algebra gives a unique real solution, but coin counts must be whole numbers. If the math yields a fraction, the original puzzle is inconsistent (the totals are impossible with those coin denominations). Try adjusting the total value by a small amount or pick different coin types.

Does the solver support pounds and euros?

Yes. Pick GBP for British coins (1p through £2) or EUR for euro coins (1¢ through €2). The solver handles each currency natively, and you can also enable custom denominations for the fewest-coins scenario.

Can I use this for cash-register puzzles or change-making?

Yes — the fewest-coins scenario is exactly the change-making problem. Type the change amount as the target value and the solver finds the optimal way to give that change.

Related tools

You may also like the Age Word Problem Solver, the Mixture Problem Solver, or the Linear Equation Solver for the underlying algebra.

Reference this content, page, or tool as:

"Coin Word Problem Solver" at https://MiniWebtool.com// from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: 2026-05-11

You can also try our AI Math Solver GPT to solve your math problems through natural language question and answer.

Top & Updated:

Random PickerRandom Name PickerLine CounterBatting Average CalculatorRelative Standard Deviation CalculatorFPS ConverterSort NumbersERA CalculatorMAC Address GeneratorInstagram User ID LookupRemove SpacesWord to Phone Number ConverterMAC Address LookupFacebook User ID LookupJob FinderFeet and Inches to Cm ConverterSum CalculatorOPS CalculatorRandom Truth or Dare GeneratorPercent Off CalculatorRandom Quote GeneratorSHA256 Hash GeneratorSquare Root (√) CalculatorDoubling Time CalculatorLog Base 10 CalculatorBitwise CalculatorVertical Jump CalculatorNumber of Digits CalculatorRoman Numerals ConverterAudio SplitterMP3 LooperSlugging Percentage CalculatorSalary Conversion CalculatorSlope and Grade CalculatorOn Base Percentage CalculatorPhone Number ExtractorSaturn Return CalculatorRandom IMEI GeneratorRandom Poker Hand GeneratorAI Text HumanizerMerge VideosNumber to Word ConverterCaffeine Overdose CalculatorCompound Growth CalculatorSun, Moon & Rising Sign Calculator 🌞🌙✨Decimal to BCD ConverterImage ResizerRandom Birthday GeneratorFirst n Digits of PiWHIP CalculatorCompare Two StringsBinary to Gray Code ConverterCm to Feet and Inches ConverterGrade CalculatorBCD to Decimal ConverterAdd Prefix and Suffix to TextRandom Movie PickerOctal CalculatorRandom Fake Address GeneratorRandom Activity GeneratorWAR CalculatorOne Rep Max (1RM) CalculatorRandom Superpower GeneratorClothing Size ConverterFile Size ConverterVideo to Image ExtractorRandom Writing Prompt GeneratorInvisible Text GeneratorText FormatterYouTube Channel StatisticsLove Compatibility CalculatorCM to Inches ConverterRemove AccentOutlier CalculatorTime Duration CalculatorPercent Growth Rate CalculatorQuotient and Remainder CalculatorRandom Integer GeneratorStair CalculatorRandom Object GeneratorDay of Year CalendarList of Prime NumbersImage SplitterWord Ladder GeneratorAI Punctuation AdderRandom Number PickerRandom Loadout GeneratorRemove Leading Trailing SpacesGray Code to Binary ConverterCryptogram GeneratorExponential Decay CalculatorBingo Card GeneratorRandom Credit Card GeneratorArc Length CalculatorModulo CalculatorAdd Text to ImageDay of the Year Calculator - What Day of the Year Is It Today?Leap Years ListConnect the Dots GeneratorEmail ExtractorURL ExtractorAI ParaphraserSHA512 Hash GeneratorVideo CompressorBinary to BCD ConverterIP Address to Hex ConverterSort Lines AlphabeticallyHex to BCD ConverterBCD to Binary ConverterLottery Number GeneratorBCD to Hex ConverterMedian CalculatorStandard Error CalculatorList RandomizerBreak Line by CharactersAverage CalculatorPVIFA CalculatorReverse VideoHypotenuse CalculatorRemove Audio from VideoActual Cash Value CalculatorScientific Notation to Decimal ConverterNumber ExtractorAngel Number CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSum of Positive Integers CalculatorSHA3-256 Hash GeneratorAI Sentence Expander📅 Date CalculatorLbs to Kg ConverterHex to Decimal ConverterRandom Group GeneratorConvolution CalculatorMAC Address AnalyzerRandom String GeneratorAmortization CalculatorMarkup CalculatorPVIF CalculatorName Number CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterTwitter/X Timestamp ConverterYouTube Watch Time CalculatorTwitch Earnings CalculatorYouTube Shorts Monetization CalculatorFacebook Ad Cost CalculatorSocial Media ROI CalculatorSocial Media Post Time OptimizerSocial Media Username CheckerCTR CalculatorROAS CalculatorInfluencer ROI CalculatorForce CalculatorAcceleration CalculatorVelocity CalculatorMomentum CalculatorProjectile Motion CalculatorKinetic Energy CalculatorPotential Energy CalculatorWork and Power CalculatorDensity CalculatorPressure CalculatorIdeal Gas Law CalculatorFree Fall CalculatorTorque CalculatorHorsepower CalculatorDilution CalculatorChemical Equation BalancerStoichiometry CalculatorPercent Yield CalculatorEmpirical Formula CalculatorBoiling Point CalculatorTitration CalculatorMole/Gram/Particle ConverterIrregular Polygon Area CalculatorFrustum CalculatorTorus Calculator3D Distance CalculatorGreat Circle Distance CalculatorCircumscribed Circle (Circumcircle) CalculatorInscribed Circle (Incircle) CalculatorAngle Bisector CalculatorTangent Line to Circle CalculatorHeron's Formula CalculatorCoordinate Geometry Distance CalculatorVolume of Revolution CalculatorSurface of Revolution CalculatorParametric Curve GrapherRiemann Sum CalculatorTrapezoidal Rule CalculatorSimpson's Rule CalculatorImproper Integral CalculatorL'Hôpital's Rule CalculatorMaclaurin Series CalculatorPower Series CalculatorSeries Convergence Test CalculatorInfinite Series Sum CalculatorAverage Rate of Change CalculatorInstantaneous Rate of Change CalculatorRelated Rates SolverOptimization Calculator (Calculus)Gradient Calculator (Multivariable)Divergence CalculatorCurl CalculatorLine Integral CalculatorSurface Integral CalculatorJacobian Matrix CalculatorNewton's Method CalculatorRREF Calculator (Row Echelon Form)Matrix Inverse CalculatorMatrix Multiplication CalculatorDot Product CalculatorCross Product CalculatorVector Magnitude CalculatorUnit Vector CalculatorAngle Between Vectors CalculatorNull Space CalculatorColumn Space CalculatorCramer's Rule CalculatorMatrix Diagonalization CalculatorQR Decomposition CalculatorCholesky Decomposition CalculatorMatrix Power CalculatorCharacteristic Polynomial CalculatorBayes' Theorem CalculatorF-Test / F-Distribution CalculatorHypergeometric Distribution CalculatorNegative Binomial Distribution CalculatorGeometric Distribution CalculatorExponential Distribution CalculatorWeibull Distribution CalculatorBeta Distribution CalculatorSpearman Rank Correlation CalculatorFisher's Exact Test CalculatorContingency Table CalculatorOdds Ratio CalculatorRelative Risk CalculatorEffect Size CalculatorPermutations with Repetition CalculatorModular Exponentiation CalculatorPrimitive Root CalculatorPerfect Number CheckerAmicable Number CheckerTwin Prime FinderMersenne Prime CheckerGoldbach Conjecture VerifierMöbius Function CalculatorEgyptian Fraction CalculatorFibonacci Number CheckerDigital Root CalculatorPartition Function CalculatorBoolean Algebra SimplifierKarnaugh Map (K-Map) SolverLogic Gate SimulatorGraph Coloring CalculatorTopological Sort CalculatorAdjacency Matrix CalculatorRecurrence Relation SolverInclusion-Exclusion CalculatorLinear Programming SolverTraveling Salesman Solver (TSP)Hamiltonian Path CheckerPlanar Graph CheckerNetwork Flow Calculator (Max Flow)Stable Marriage Problem SolverFirst-Order ODE SolverSecond-Order ODE SolverDirection Field / Slope Field PlotterEuler's Method CalculatorBernoulli ODE SolverSystem of ODEs SolverGroup Theory Order CalculatorRing and Field CalculatorJordan Normal Form CalculatorMatrix Exponential CalculatorTensor Product CalculatorFast Fourier Transform (FFT) CalculatorZ-Transform CalculatorNumerical Integration CalculatorTOML to JSON ConverterJSON to CSV ConverterXML to JSON ConverterSQL to MongoDB Query ConverterCSS Flexbox PlaygroundCSS Grid GeneratorJWT GeneratorBcrypt Hash Generator / CheckerColor Code Converter (All Formats)Git Command Generator.env File GeneratorLorem Picsum / Placeholder Image GeneratorText to Binary/Hex/ASCII ConverterSyllable CounterSentence CounterParagraph CounterSpeaking Time CalculatorReading Time CalculatorWhitespace VisualizerStrikethrough Text GeneratorTorque Converter (Nm, ft-lb, kgf-cm)Data Transfer Rate ConverterFuel Efficiency ConverterAstronomical Unit ConverterRing Size ConverterPaper Size ReferenceGas Mileage CalculatorEV Range CalculatorEV Charging Time Calculator0–60 / Quarter Mile CalculatorCar Lease CalculatorVehicle Towing Capacity CalculatorExposure Triangle CalculatorCrop Factor CalculatorMegapixel to Print Size CalculatorPhoto File Size EstimatorMusic BPM TapperMusic Key TransposerVideo Bitrate CalculatorSeed Germination Rate CalculatorFertilizer Calculator (NPK)Raised Bed Soil CalculatorFrost Date CalculatorLawn Fertilizer CalculatorCompost Calculator (C:N Ratio)Solar Panel CalculatorSolar ROI CalculatorHome Energy Audit CalculatorAppliance Energy Cost CalculatorWater Usage CalculatorElectricity Generation Cost CalculatorHeat Loss CalculatorFlight Distance CalculatorTravel Budget CalculatorJet Lag CalculatorPacking List GeneratorTip Splitter (Advanced)Lease vs Buy CalculatorHourly Rate Calculator (Freelancer)Invoice Late Fee CalculatorESPP CalculatorStock Split CalculatorOptions Probability CalculatorDollar to Gold ConverterBeam Load CalculatorPipe Flow CalculatorBolt Torque CalculatorSteel Weight CalculatorGravel, Sand & Topsoil CalculatorRandom Sentence GeneratorRandom Paragraph GeneratorRandom Math Problem GeneratorRandom Bible Verse GeneratorRandom Cat/Dog Name GeneratorRandom Debate Topic GeneratorBody Recomposition CalculatorAlcohol Calorie CalculatorMedication Dosage CalculatorPace to Calories CalculatorHydration CalculatorTrain Meeting Problem SolverAge Word Problem SolverMixture Problem SolverWork Rate Problem SolverDistance-Speed-Time Triangle CalculatorCoin Word Problem SolverNumber Bonds GeneratorCarry and Borrow VisualizerTimes Tables QuizMental Math Trainer