If a problem is solved. It is not 'the' answer. No
attempt is made to search for the most elegant answer. I highly recommend
that you at least try to solve the problem before you read the solution.
-
In how many ways can you arrange m identical stones into k piles so
that each pile has at least 1 stone in it.
| By
removing one stone from each pile, this is the number of ways you can arrange
m-k identical stones into k (possibly empty) piles. .. Now, view the k
piles as a numbered set . Write on each stone the number of a chosen pile
and order the stones accordingly. The numbered stones constitute a
combination with repetition of k elements (the numbers) choose m-k (the
stones). This can be done in
(m - 1)!
C'(k,m-k) = C(m-1,m-k) = ----------------- ways.
(m - k)!(k - 1)!
-
How many strictly positive integer solutions ( x, y , z) are
there, such that x + y + z = 100
| This is
the same problem as In how many ways can you arrange 100 identical stones
into 3 piles so that each pile has at least 1 stone in it. From previous
problem the answer is C(99,97) = 4851 ways
How many terms are contained in (a + b + c)20 .
|
All terms can be written as A.ap .bq .cr with p + q + r = 20.
The number of terms is the number of solutions of the equation
p + q + r = 20 with p, q, r as positive integer unknowns.
Now regard (p,q,r) as three ordered elements.
Point 20 times one of these elements, and order these elements
in the same order as the given elements.
This corresponds with one solution of p + q + r = 20 and it is
a combination with repetition of 3 elements choose 20.
The number of terms is the number of such combinations
= C'(3,20) = C(22,20) = C(22,2) = 231
-
The term A.a10 b3 c7 is contained in (a + b + c)20 . Calculate A.
|
The number of terms a10 b3 c7 is the number of permutations
with repetition of the elements
a,a,a,a,a,a,a,a,a,a,b,b,b,c,c,c,c,c,c,c
This number is
20!
----------- = 22 170 720
10! 3! 7!
|