Skip to content

Commit 0e11fe5

Browse files
Add solution to problem 5.3
1 parent 2f7486e commit 0e11fe5

4 files changed

Lines changed: 97 additions & 10 deletions

File tree

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,51 @@
1-
To do
1+
Observe that for each $n \in \mathbb{Z}^{+}$,
2+
the binomial coefficient $\mbinom{2 n - 1}{n}$ is a multiple of the primes in the range $n < p \leq 2 n - 1$,
3+
and thus:
4+
\begin{equation*}
5+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{n < p < 2 n}} {\mspace{-10mu} p} \mspace{2mu}
6+
\leq \binom{2 n - 1}{n}
7+
\leq \, 4^{n - 1}
8+
\end{equation*}
9+
where the last inequality comes from:
10+
\begin{equation*}
11+
2 \, \binom{2 n - 1}{n}
12+
= \binom{2 n - 1}{n} + \binom{2 n - 1}{n - 1}
13+
\leq \, \sum\limits_{k = 0}^{2 n - 1} {\binom{2 n - 1}{k}}
14+
= \paren{1 + 1}^{2 n - 1}
15+
= 2 \cdot 4^{n - 1}
16+
\end{equation*}
17+
18+
Now, notice that it sufficies to prove the claimed statement for $x$ integer.
19+
For $x = 1$ and $x = 2$ it is immediate to verify its validity.
20+
Inductively, if $x > 2$ is even, then, trivially (using that $x$ is not a prime):
21+
\begin{equation*}
22+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq x}} {\mspace{-6mu} p} \mspace{6mu}
23+
= \mspace{-9mu} \prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq x - 1}} {\mspace{-12mu} p} \mspace{3mu}
24+
\leq \mspace{1.2mu} 4^{x - 2}
25+
< 4^{x - 1}
26+
\end{equation*}
27+
If $x$ is odd, let $x = 2 m - 1$ for some integer $m > 1$; then:
28+
\begin{equation*}
29+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq x}} {\mspace{-6mu} p} \mspace{2mu}
30+
= \prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq m}} {\mspace{-6mu} p} \mspace{2mu}
31+
\mspace{6mu} \cdot \mspace{-8mu}
32+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{m < p < 2 m}} {\mspace{-10mu} p} \mspace{2mu}
33+
\leq \, 4^{m - 1} \cdot 4^{m - 1}
34+
= 4^{x - 1}
35+
\end{equation*}
36+
37+
38+
% For $1 \leq x \leq 4$ the claim is trivially verified to hold true.
39+
% Inductively, if the claim holds for every $2^{k - 1} \leq y \leq 2^{k}$, then,
40+
% letting $2^{k} \leq x \leq 2^{k + 1}$ and denoting $t = \frac{\floor{x}}{2}$,
41+
% it holds that $2^{k - 1} \leq t \leq 2^{k}$, so:
42+
% \begin{equation*}
43+
% \prod\limits_{\underset{\scriptstyle{\text{$p$ prime}}}{1 \leq p \leq x}} {\mspace{-8mu} p} \mspace{2mu}
44+
% \leq \prod\limits_{\underset{\scriptstyle{\text{$p$ prime}}}{1 \leq p \leq \ceil{t}}} {\mspace{-8mu} p}
45+
% \mspace{4mu} \cdot \mspace{-4mu}
46+
% \prod\limits_{\underset{\scriptstyle{\text{$p$ prime}}}{\ceil{t} < p \leq 2 \ceil{t}}} {\mspace{-8mu} p} \mspace{2mu}
47+
% \leq \mspace{2mu} 4^{\ceil{t} - 1} \cdot 4^{\ceil{t} - 1}
48+
% = 4^{2 \ceil{t} - 2}
49+
% \leq 4^{x - 1}
50+
% \end{equation*}
51+
% having used that $2 \ceil{t} \geq \floor{x}$ and that $2 \ceil{t}$ itself is not prime, since $t > 1$.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
Prove that for every $n \in \mathbb{Z}^{+}$:
1+
Prove that for every $x \geq 1$:
22
\begin{equation*}
3-
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq n}} {\mspace{-8mu} p} \mspace{2mu}
3+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq x}} {\mspace{-6mu} p} \mspace{2mu}
44
\leq \mspace{2mu}
5-
4^{n - 1}
5+
4^{x - 1}
66
\end{equation*}
77

88
% Using \underset because \substack is not supported by MathML
99
%
1010
% \begin{equation*}
11-
% \prod\limits_{\mathclap{\substack{1 \leq p \leq n \\ \text{$p$ prime}}}} {\: p} \mspace{2mu}
11+
% \prod\limits_{\mathclap{\substack{1 \leq p \leq x \\ \text{$p$ prime}}}} {\: p} \mspace{2mu}
1212
% \leq \mspace{2mu}
13-
% 4^{n - 1}
13+
% 4^{x - 1}
1414
% \end{equation*}
Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,38 @@
1-
To do
1+
The claim is equivalent to the claim that for all $n \in \mathbb{Z}^{+}$,
2+
$\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq n}} {\mspace{-8mu} p} \mspace{2mu}
3+
\leq 4^{n}$.
4+
5+
Observe that for each $n \in \mathbb{Z}^{+}$,
6+
the binomial coefficient $\mbinom{2 n + 1}{n}$ is a multiple of the primes in the range $n + 1 < p \leq 2 n + 1$,
7+
and thus:
8+
\begin{equation*}
9+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{n + 1 < p \leq 2 n + 1}} {\mspace{-20mu} p} \mspace{9mu}
10+
\leq \binom{2 n + 1}{n}
11+
\leq 4^{n}
12+
\end{equation*}
13+
where the last equality follows from:
14+
\begin{equation*}
15+
2 \, \binom{2 n + 1}{n}
16+
= \binom{2 n + 1}{n} + \binom{2 n + 1}{n + 1}
17+
\leq \, \sum\limits_{k = 0}^{2 n + 1} {\binom{2 n + 1}{k}}
18+
= \paren{1 + 1}^{2 n + 1}
19+
= 2 \cdot 4^{n}
20+
\end{equation*}
21+
22+
Now, the claimed statement holds true for $n = 1$ and $n = 2$.
23+
Inductively, if $n > 2$ is even, then, trivially (using that $n$ is not a prime):
24+
\begin{equation*}
25+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq n}} {\mspace{-6mu} p} \mspace{6mu}
26+
= \mspace{-9mu} \prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq n - 1}} {\mspace{-12mu} p} \mspace{3mu}
27+
\leq \mspace{1.2mu} 4^{n - 1}
28+
< 4^{n}
29+
\end{equation*}
30+
If $n$ is odd, let $n = 2 m + 1$ for some integer $m > 0$; then:
31+
\begin{equation*}
32+
\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq n}} {\mspace{-8mu} p} \mspace{2mu}
33+
= \paren{\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{1 \leq p \leq m + 1}} {\mspace{-12mu} p} \mspace{3mu}}
34+
\cdot
35+
\paren{\prod\limits_{\underset{\scriptstyle{p \text{ prime}}}{m + 1 < p \leq 2 m + 1}} {\mspace{-18mu} p} \mspace{6mu}}
36+
\leq \, 4^{m + 1} \cdot 4^{m}
37+
= 4^{n}
38+
\end{equation*}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
For each $i \in \mathbb{Z}^{+}$,
2-
let $p_i$ be the $i$-th prime number.
1+
For each $k \in \mathbb{Z}^{+}$,
2+
let $p_k$ be the $k$-th prime number.
33
Prove that for every $n \in \mathbb{Z}^{+}$:
44
\begin{equation*}
5-
\prod\limits_{i=1}^{n} {p_i}
5+
\prod\limits_{k = 1}^{n} {p_k}
66
< \mspace{2mu} 4^{p_n}
77
\end{equation*}

0 commit comments

Comments
 (0)