Download Binomial identities

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Birthday problem wikipedia , lookup

Inverse problem wikipedia , lookup

Computational complexity theory wikipedia , lookup

Exact cover wikipedia , lookup

Knapsack problem wikipedia , lookup

Transcript
Problem Solving Practice Session
The Rules. There are way too many problems to consider in one session. Pick a few
problems you like and play around with them. Don’t spend time on a problem that you
already know how to solve.
The Hints. Work in groups. Try small cases. Do examples. Look for patterns. Use lots
of paper. Talk it over. Choose effective notation. Try the problem with different numbers.
Work backwards. Argue by contradiction. Modify the problem. Generalize. Don’t give
up after five minutes. Don’t be afraid of a little algebra. Sleep on it if need be. Ask.
T HE P ROBLEMS
k
n−m
n
1. For 0 ≤ m ≤ k < n, prove that nk m
= m
.
k−m
2n+1 −1
P
P
n
1
2. Show that nk=1 k nk = n2n−1 , and that nk=0 k+1
= n+1
k
3. For n, k ≥ 0 and p prime, prove that pa
≡ ab (mod p).
pb
4. (Putnam 2004, B2) Let m and n be positive integers. Show that
(m + n)!
m! n!
< m n.
m+n
(m + n)
m n
5. (Putnam 1992, B2) For nonnegative integers n and k, define Q(n, k) to be the coefficient of xk in the expansion of (1 + x + x2 + x3 )n . Prove that
k X
n
n
Q(n, k) =
.
j
k − 2j
j=0
gcd(m, n) n
is an integer for all pairs of integers
6. (Putnam 2000, B2) Prove that
n
m
n ≥ m ≥ 1.
7. (Putnam 1991, B4) Suppose that p is an odd prime. Prove that
p X
p p+j
≡ 2p + 1 (mod p2 ) .
j
j
j=0
8. (Putnam 1996, A5) If p is a prime number greater than 3 and k = b2p/3c, prove that
the sum
p
p
p
+
+ ··· +
1
2
k
2
of binomial coefficients is divisible by p .
9. If n ≡ 0 (mod 6), then calculate the number of subsets of [n] whose size is congruent
to r (mod 3) for each r ∈ {0, 1, 2}.
Putnam: page 1 of 2
Problem Solving Practice Session
Putnam: page 2 of 2
S OME B ASIC C OMBINATORICS I DENTIES
1. The number of subsets of [n] = {1, 2, . . . , n} is 2n .
2. The number of permutations of [n] is n!.
3. The binomial
coefficient
n
n!
Then k = k!(n−k)!
.
5. (Newton’s Binomial formula) (1 + t)n =
Pn
=
,k
n
k
=n
n−1
k−1
is defined to be the number of k-element subsets of [n].
n
k−1
n
n−k
+
4.
n
k
n
k
,
n+1
k
=
n
k
6. (Vandermonde convolution formula)
7.
Pn
k=0
n
k
= 2n ,
Pn
k=0
n 2
k
=
k=0
Pk
i=0
n
k
m
i
tk
n
k−i
=
m+n
k
2n
n
8. The number of choices of k objects from n with repetitions allowed and order not
significant is equal to the number of ways of choosing n non-negative integers
whose sum is k.
9. The number of n-tuples of non-negative integers x1 , x2 , . . . , xn with x1 + x2 + · · · +
xn = k is n+k−1
.
n−1
10. (De Moivre formula) (cos x + i sin x)n = cos(nx) + i sin(nx)
11. If p is a prime number, and k the largest exponent so that pk divides n!, then
n
n
n
k=
+ 2 + 3 + ···
p
p
p
2
Another way to compute k is to write
P n in base p, i.e., write n = a0 + a1 p + a2 p + · · ·
n − ai
.
with 0 ≤ ai ≤ p − 1. Then k =
p−1
12. (Lucas Theorem) Let p be a prime and let m = a0 + a1 p + · · · + ak pk , n = b0 + b1 p +
· · · + bk pk , where 0 ≤ ai , bi ≤ p − 1 for i = 0, 1, . . . , k − 1 (i.e., write m and n in base
p). Then
Y
k m
ai
≡
(mod p)
n
b
i
i=0