Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

= You have N cents and m possible coin denominations {S,..., Sm} (say S1 = 1 cent, S 2 cents, etc.). We want to

 


= You have N cents and m possible coin denominations {S,..., Sm} (say S1 = 1 cent, S 2 cents, etc.). We want to know in how many ways we can break the N cents into combinations of coins. For example, let S = 1, S 5 and S3 = 10, and N = 10. Then, we have 4 options: (i) 1 coin of 10 cents, (ii) two coins of 5 cents each (iii) 5 coins of 1 cent and 1 coin of 5 cents (iv) 10 coins of one cent. If have only $ you 1 and S5 (i.e., you are not allowed to use the 10 cents coin) then you have only three options. In this example 75% of the outcomes do not use 10 cents. - - (a) Write a recursion of C(N, m) the number of ways to "build" N cents if you have the denom- inations {S,..., Sm}. Code the recursion. Hint 1: Split into combinations that use the denomination Sm and those that do not. Hint 2: Write C(N, m) as a sum C(x, m) + C(N, y), where you have to carefully choose the values x and y such that x N and y m. (b) With S (c) What fraction of these uses only 1, 5 and 10 cents denominations? 1, S2 = 5, S3 = 10, and S4 = 25, how many ways there are to change N = 213 ? (d) Repeat the same for multiple values of N and plot the result to the previous question as a function of N?

Step by Step Solution

3.47 Rating (157 Votes )

There are 3 Steps involved in it

Step: 1

a Recursion of CN m The number of ways to build N cents using denominations S1 Sm can be computed recursively as follows 1 If N is 0 there is only one ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Accounting Principles Part 3

Authors: Jerry J. Weygandt, Donald E. Kieso, Paul D. Kimmel, Barbara Trenholm, Valerie Kinnear, Joan E. Barlow

6th Canadian edition Volume 1

1118306805, 978-1118306802

More Books

Students also viewed these Accounting questions

Question

When is the application deadline?

Answered: 1 week ago