Homepage › Solution manuals › Ivan Niven › An Introduction to the Theory of Numbers › Exercise 2.4.22* (Estimation of $\prod_{j=1}^{k-1} \left( 1 - \frac{j}{n} \right)$)
Exercise 2.4.22* (Estimation of $\prod_{j=1}^{k-1} \left( 1 - \frac{j}{n} \right)$)
Show that the product in Lemma 2.21 is smaller than , but larger than
Hint: Show that for all real numbers . Derive a corresponding lower bound from inequality (1.9) in Section 1.3.
Answers
Note: There is a missing hypothesis. We must suppose that to prove the second inequality (see below).
We can give numerical counterexamples. For
With Sage:
def left_member(k,n): return exp(-k^2/(2*n) - k^3/(3*n^2)).n() def right_member(k,n): return prod([1- j/n for j in range(1,k)]).n() left_member(90,100) 7.20638686090140e-29 right_member(90,100) 2.57182031095525e-29
Proof. The product in lemma 21, giving the probability that numbers independently chosen from the set are distinct, is
where .
The function is convex, since for all . Therefore the graph of is above the tangent at , which gives
Substituting to , we obtain
Therefore
To prove the other inequality, we use inequality (1.9), page 27:
Then
We must suppose here that , since this inequality is not true on (for instance, if , ) .
We apply this inequality to , where for (because ), so
because .
To conclude, is smaller than , and if , is larger than . □