I've read a few articles but its not doing the trick.
can you show step by step how a postage of 12 cents or more can be formed using 4 cents and 5 cents stamps
Ah, you're referring to the fact that the Frobenius number of {4,5} is 4*5-(4+5) = 11.
The easiest demonstration I can think of involves congruence with a modulus, but you may not be familiar with the notation.
We can immediately obtain all numbers congruent to 0 (mod 4). These are simply the multiples of 4.
Starting with 5, we can obtain all numbers congruent to 1 (mod 4). These are numbers of the form 4k+1. Just start with 5 and continue adding 4 to it: 5, 9, 13, 17, ...
Starting with 10 we can obtain all numbers congruent to 2 (mod 4).
Starting with 15 we can obtain all numbers congruent to 3 (mod 4).
So certainly, starting with 15 we can obtain all integers.
14 we got via 5+5+4. 13 we got via 5+4+4. 12 is 4+4+4. So that accounts for all integers greater than or equal to 12.
If some value y is a multiple of fours and fives,
then
y+4 is a sum of fours and fives if y is.
y+5 is a sum of fours and fives if y is or if y+1 is.
y+6 is a sum of fives and fours if y+2 or y+1 is.
y+7 is a sum of fours and fives if y+3 or y+2 is.
The pattern repeats.
Let's have a little fun of writing the proof by the Strong Principle of Mathematical Induction, which says:
For each positive integer n, letbe a statement If
is true and
is true.
Proof:
For the basis step, we want to prove the a postage of 12 cents is made of some numbers of 4 cents and 5 cents stamps. So
We say there exist nonnegative integersand
such that
. In fact we have integers
and
. So this part of proof is done. We move the next step, the Inductive Step:
Here we assume the there exist integersand
such the
, where
, where
. Now we consider the integer
. We show that there are nonnegative integers such that
. Since
, we we have
, then we have
, and we have
. Hence we assume
It follows that
. By the induction hypothesis, there are nonnegative integers
and
such that
, and so
or equivalently,
, where
is and integer.
This concludes the proof.
While you are at it, I have a question about the line I marked in red.
It seems that the line in question happened to work out nicely. I am wondering whether that was only an accident.
In fact the stamps can also be made of some 3 cents and 5 cents stamps. In this particular case, the line in red might even become false.
Since there are so many formal proofs popping up here, I might as well formalise my earlier post.
Define "k is attainable" as: there exist nonnegative integers m and n such that k = 4m + 5n.
Base cases:
12 is attainable, (m, n) = (3, 0).
13 is attainable, (m, n) = (2, 1).
14 is attainable, (m, n) = (1, 2).
15 is attainable, (m, n) = (0, 3).
Induction step:
Let k be an integer such that k-4 is attainable. Then k is attainable.
Proof:
There exist nonnegative integers m and n such that k-4 = 4m + 5n.
Then k = 4(m+1) + 5n.
Therefore, k is attainable.
One approach to tie together the induction step with the base cases is to use strong induction, but why not just partition the set of nonnegative integers by congruence (mod 4)?
S0 = {0, 4, 8, ...}
S1 = {1, 5, 9, ...}
S2 = {2, 6, 10, ...}
S3 = {3, 7, 11, ...}
It can be seen that the intersection of the sets is the empty set, and the union of the sets is the nonnegative integers.
So we treat each subset the same way we would treat the nonnegative integers and apply weak induction four times.
Therefore, all integers greater than or equal to 12 are attainable.
This concludes the proof.
The base case has y=12 and k=0.
The general case is P(k) and we use it to establish that it causes P(k+1) to be valid.
P(k)
is a combination of multiples of 4 and 5
P(k+1)
is also a combination of multiples of 4 and 5
Proof
which is definately a combination of multiples of 4 and 5 if y+k is.