Multiplication Principle: If a procedure can be broken into m stages and if there are r outcomes in the first stage,s outcomes in the second stage independent of the choice in the first stage, t outcomes in the third stage again independent of the previous choices then the total procedure has rst... composite outcomes.
P(n,r) = n(n-1)(n-2)...(n-r+1)
P(n,n) = n!
3. There are 50 cards numbered 1 to 50. Two different cards are choosen at random. How many ways can this be done? In how many of these picks will one card be twice the other? [25.49, 25]
4. Use the prime decomposition to show that every square integer has an odd number of divisors (including 1 and itself), and every non-square integer has an even number of divisors. [ p1a1p2a2... pkak has (a1 + 1)(a2 + 1) ...(ak + 1) factors ]
5. How many integers greater than 6600 have distinct digits, not including the digits 7,8,or 9? [ 6.6.5.4.3 + 6.6.5.4.3.2 + 6.6.5.4.3.2.1 = 720.15 = 10,800 ]
C(n,r) = n!/r!(n-r)!
If selections are taken from an n-set and repeats (replacement) allowed then the number of lists is = n n n ... n = nr .
If no repeats are allowed then the number of lists is given by
P(n,r) = n(n-1)(n-2)...(n-r+1)
In the special case of complete lists (permuations) we have
P(n,n) = n!
Combinations (selections without order; number of r-sets in an n-set) (r-combinations)
P(n,r) = C(n,r) x P(r,r)
C(n,r) = n!/r!(n-r)!
Also, C(n,r) = C(n, n-r)
and C(n,r) = C(n-1,r-1) + C(n-1,r).
Binomial Theorem.
C(n,m) C(m,k) = C(n,k) C(n-k, m-k).
C(n-1,k-1) + C(n-1,k) = C(n,k).
C(n+1, k) = C(n, k-1) + C(n-1, k) + C(n-1, k-1).