-->

Sunday, December 31, 2017

Making Change Word Problems rounding addition worksheets subtract
src: i.ytimg.com

The change-making problem, also known as minimum coin change problem, addresses the question of finding the minimum number of coins (of certain denominations) that add up to a given amount of money. It is a knapsack type problem, and has applications wider than just currency.

It is also the most common variation of the coin change problem, a general case of partition in which, given the available denominations of an infinite set of coins, the objective is to find out the number of possible ways of making a change for a specific amount of money, without considering the order of the coins.


Video Change-making problem



Mathematical definition

Coin values can be modeled by a set of n distinct positive integer values (whole numbers), arranged in increasing order as w1 = 1 through wn. The problem is: given an amount W, also a positive integer, to find a set of non-negative (positive or zero) integers {x1, x2, ..., xn}, with each xj representing how often the coin with value wj is used, which minimize the total number of coins

? j = 1 n x j {\displaystyle \sum _{j=1}^{n}x_{j}}

subject to

? j = 1 n w j x j = W . {\displaystyle \sum _{j=1}^{n}w_{j}x_{j}=W.}

Maps Change-making problem



Non-currency examples

An application of change-making problem can be found in computing the ways one can make a nine dart finish in a game of darts.

Another application is computing the possible atomic (or isotopic) composition of a given mass/charge peak in mass spectrometry.


Lecture 9 Greedy Approach - ppt video online download
src: slideplayer.com


Methods of solving

Simple dynamic programming

A classic dynamic programming strategy works upward by finding the combinations of all smaller values that would sum to the current threshold. Thus, at each threshold, all previous thresholds are potentially considered to work upward to the goal amount W. For this reason, this dynamic programming approach may require a number of steps that is at least quadratic in the goal amount W.

Optimal Substructure

Since the problem exhibits optimal substructure, dynamic programming strategy can be applied to reach a solution as follows:

Firstly, given that S {\displaystyle S} is the optimal solution that contains exactly n {\displaystyle n} coins, hence S ? = S - c {\displaystyle S'=S-c} . It may seem as if c ? S {\displaystyle c\in S} , is the optimal solution for the sub-problem that contains exactly n - c {\displaystyle n-c} coins.

However, S ? {\displaystyle S'} does not contain n - c {\displaystyle n-c} coins, and is not optimal, therefor the solution is known as X ? S ? {\displaystyle X\neq S'} , hence X {\displaystyle X} becomes the optimal solution, since it must contain less number of coins than S ? {\displaystyle S'} .

Finally, combining X {\displaystyle X} with c {\displaystyle c} achieves the optimal solution that contains exactly n {\displaystyle n} coins, while contradicting any assumptions that S {\displaystyle S} is the optimal solution for the original problem.

Implementation

The following is a dynamic programming implementation (with Python 3) which uses a matrix to keep track of the optimal solutions to subproblems, and returns the minimum number of coins. A second matrix may be used to obtain the set of coins for the optimal solution.

Dynamic programming with the probabilistic convolution tree

The probabilistic convolution tree can also be used as a more efficient dynamic programming approach. The probabilistic convolution tree merges pairs of coins to produce all amounts which can be created by that pair of coins (with neither coin present, only the first coin present, only the second coin present, and both coins present), and then subsequently merging pairs of these merged outcomes in the same manner. This process is repeated until the final two collections of outcomes are merged into one, leading to a balanced binary tree with W log(W) such merge operations. Furthermore, by discretizing the coin values, each of these merge operations can be performed via convolution, which can often be performed more efficiently with the fast Fourier transform (FFT). In this manner, the probabilistic convolution tree may be used to achieve a solution in sub-quadratic number of steps: each convolution can be performed in n log(n), and the initial (more numerous) merge operations use a smaller n, while the later (less numerous) operations require n on the order of W.

The probabilistic convolution tree-based dynamic programming method also efficiently solves the probabilistic generalization of the change-making problem, where uncertainty or fuzziness in the goal amount W makes it a discrete distribution rather than a fixed quantity, where the value of each coin is likewise permitted to be fuzzy (for instance, when an exchange rate is considered), and where different coins may be used with particular frequencies.

Greedy method

For the so-called canonical coin systems, like the one used in the US and many other countries, a greedy algorithm of picking the largest denomination of coin which is not greater than the remaining amount to be made will produce the optimal result. This is not the case for arbitrary coin systems, though: if the coin denominations were 1, 3 and 4, then to make 6, the greedy algorithm would choose three coins (4,1,1) whereas the optimal solution is two coins (3,3).


Greedy Algorithm Making Change - YouTube
src: i.ytimg.com


Related problems

The "optimal denomination problem" is a problem for people who design entirely new currencies. It asks what denominations should be chosen for the coins in order to minimize the average cost of making change, that is, the average number of coins needed to make change? The version of this problem assumed that the people making change will use the minimum number of coins (from the denominations available). One variation of this problem assumes that the people making change will use the "greedy algorithm" for making change, even when that requires more than the minimum number of coins. Most current currencies use a 1-2-5 series, but some other set of denominations would require fewer denominations of coins or a smaller average number of coins to make change or both.


Lecture 9 Greedy Approach - ppt video online download
src: slideplayer.com


See also

  • List of knapsack problems
  • Coin problem
  • The coin collector's problem

Coin Change Tutorial - YouTube
src: i.ytimg.com


References


Lecture 9 Greedy Approach - ppt video online download
src: slideplayer.com


Further reading

  • X. Cai (2009). "Canonical Coin Systems for Change-Making Problems". Proceedings of the Ninth International Conference on Hybrid Intelligent Systems: 499-504. arXiv:0809.0400 . doi:10.1109/HIS.2009.103. 
  • M. Adamaszek, A. Niewiarowska (2010). "Combinatorics of the change-making problem". European Journal of Combinatorics. 31 (1): 47-63. arXiv:0801.0120 . doi:10.1016/j.ejc.2009.05.002. 

Source of article : Wikipedia