Question text is in black, my answers in blue.
In Chapter 1, which of course you don't have, I define a "natural" to be a "natural number", meaning a non-negative integer or a member of the set {0,1,2,3,...}. This is the set of possible sizes of a finite set, so it's the most natural kind of number to use for counting problems.
No! Dice problems are different from card problems because you are counting sequences rather than sets. Remember when you compute that the chance of getting 7 by throwing 2D6 is 1/6, you count the six ways of getting 7 which are 1-6, 2-5, 3-4, 4-3, 5-2, and 6-1 -- you must count 1-6 and 6-1 as separate sequences. In this case if you were to count the number of straights, you would have to consider all possible orderings of a set of values as different sequences.
Think of the special case where a, b, and c are each 1/2. Then the set where x ≤ a is the left half of the cube, the set where y ≤ b is the bottom half, and the set where z ≤ c is the back half. The set where at least one of these things is true is seven-eighths of the cube -- it is everything except for the 1/2 by 1/2 by 1/2 cube in the top right front corner of the original cube.
The problem asks you to calculate how many numbers are either multiples of 2, multiples of 3, multiples of 5, or multiples of 7. The numbers in this set are composite except for 2, 3, 5, and 7. So to get the number of primes, you find the total number of numbers not in this set, then add four.
Yes, though that might not be the easiest way to do it. If you let P(n) be the statement "at least one of the numbers in the set {n, n-1,..., n-k+1} is divisible by k", then you can prove P(n) for all n by induction, and this implies the desired result. Some of you know about modular arithmetic and such from 250 or elsewhere and some don't, so we'll take informal answers about divisibility here.
No, parts (a) and (b) are easier without induction, using the rule that if
[x1,...,xn] and [y1,...,yn] are
two sequences of numbers with xi ≤ yi for each i, then
the product of x's is ≤ the product of the y's. Part (a) is an excellent
easy practice induction proof, but part (b) is about as hard as part (c) if you
do it by induction. (If you try it, I suggest defining k to be n/2 and then
using induction on k. You'll need the fact about the number e from the
statement of (c).
No, because you've double-counted in every instance where a seven-card hand
contains more than on straight. You could use Inclusion/Exclusion by figuring
out how many hands have two or three straights, but this is messy. Look at
the problem more carefully, though -- I asked how many of the hands without
pairs have a straight. So you need to look at the (13 choose 7) possible
rank sets for a seven-card hand without a pair, decide how many of these
contain five consecutive numbers, and then account for the suits of the cards.
Last modified 12 February 2009