3

The question is to simply proof that $13\space|(\space4^{2^{2n+1}}-3)$ for all $n\in\mathbb{N}$. Since the chapter in my book is about the Euler-phi function and Euler's theorem, my guess would be to look at $4^{2^{2n+1}}\equiv3\space \pmod{13}$ and do something with Euler's theorem. Another guess is to solve this by induction, but in both approaches I am very stuck.

Tyron
  • 1,212

7 Answers7

5

As you correctly note, to compute $$ 4^{2^{2n+1}} \pmod{13} $$ you can compute $$ 2^{2n+1} \pmod{12}. $$ It is advisable to use CRT, and compute separately modulo $3$ and modulo $4$.

Modulo $3$ you have $$ 2^{2n+1} \equiv (-1)^{2n+1} \equiv -1 \pmod{3}, $$ whereas modulo $4$ you have $$ 2^{2n+1} \equiv 0 \pmod{4}, $$ for $n \ge 1$.

Therefore $$ 2^{2n+1} \equiv 8 \pmod{12}. $$ (This usually implies solving the system of congruences $$ \begin{cases} x \equiv -1 \pmod{3}\\ x \equiv 0 \pmod{4}\\ \end{cases} $$ but in this case it is just a matter of checking which of $x = 0, 4, 8$ is a solution.)

Thus $$ 4^{2^{2n+1}} \equiv 4^8 \equiv 3^4 \equiv 3 \pmod{13} $$ as $4^2 = 16 \equiv 3 \pmod{13}$ and $3^3 = 27 \equiv 1 \pmod{13}$.

  • $2^{2n+1}=2\times 4^n$ is divisible by 4 except when $n=0$ – Evariste Jan 05 '17 at 09:44
  • @Evariste, thanks a bunch, silly of me, should have been fixed now. – Andreas Caranti Jan 05 '17 at 09:46
  • Note $ $ We can simplify by eliminating CRT, instead using the mod distributive law to pull out a common factor of $,\color{#0a0}{2^{\large 2}} $ from $,2^{\large 2N+1}$ and modulus $=12,,$ i.e.

    $$ N>0\ \Rightarrow\ 2^{\large 2N+1}!\bmod{12}, =, \color{#0a0}{2^{\large 2}}!!!!!!!\underbrace{(2^{\large 2N-1}!\bmod 3)}_{\large 2^{\Large\rm odd}\equiv (-1)^{\Large \rm odd}\equiv, -1,\equiv ,\color{#c00} 2\ \ \ }!!!!!!! = \color{#0a0}{2^{\large 2}}\cdot \color{#c00}2 = 8\qquad $$

    – Bill Dubuque Jan 05 '17 at 18:04
  • This technique can yield much greater simplification when the numbers are larger. See this answer for further discussion. – Bill Dubuque Jan 05 '17 at 18:04
  • @BillDubuque, thanks. – Andreas Caranti Jan 05 '17 at 18:12
  • @Andreas To be clear, the comments were targeted at readers (no doubt this is well-known to you). – Bill Dubuque Jan 05 '17 at 18:49
2

${\rm mod}\ 13\!:\,\ 4^{\large 2^{\Large 2n+1}}\!\!\!= 4^{\large 2\cdot 4^{\Large n}}\!\!= 16^{\large 4^{\Large n}}\!\!\equiv 3^{\large 4^{\Large n}}.\ $ But $\ {3^{\large 4}\!\equiv 3}\ $ so $\ \color{#c00}{3^{\large 4^{\Large n}}\!\!\equiv 3}\ $ by induction, viz.

$$ 3^{\large 4^{\Large n+1}}\!\!\equiv (\color{#c00}{3^{\large 4^{\Large n}}})^{\large 4}\equiv \color{#c00}3^{\large 4}\equiv 3$$

Bill Dubuque
  • 272,048
1

First check for $n=0$: $$4^{2^{2\cdot0+1}}=4^2=16 \equiv 3 \pmod{13}$$

Then assume, that $4^{2^{2k+1}} \equiv 3 \pmod{13}$ for $k\geq 0$

$$4^{2^{2(k+1)+1}}= 4^{2^{2k+1+2}}= 4^{2^{2k+1}\cdot 4}=\left(4^{2^{2k+1}}\right)^4 \equiv 3^4 \pmod{13} \equiv (-4)^2 \pmod{13} \equiv 3 \pmod{13}$$

Using the mathematical induction we've proved that the equation $4^{2^{2n+1}}\equiv3\space \pmod{13}$ is true for all $n\geq 0$

1

Here is another way of viewing the solution.

You are looking at $$4^{2\times 2\times \cdots \times 2}=(4^2)^{2^\cdots}\pmod {13}.$$

You know that $4^2\equiv3\pmod {13}$, $3^2\equiv9\pmod{13}$ and $9^2\equiv (-4)^2\equiv 3\pmod {13}$.

So if the number of twos is odd (which is the case here), then

$$4^{2^{2n+1}}\equiv 3\pmod {13}.$$

E. Joseph
  • 14,843
1

By the binomial theorem, $$ 4^{2^{2n+1}}=4^{2\cdot 2^{2n}}=16^{2^{2n}}=(13+3)^{2^{2n}}=13a+3^{2^{2n}} $$ Now $3^{3} \equiv 1 \bmod 13$ and so we have to compute $2^{2n} \bmod 3$. But this is easy: $$ 2^{2n} = 4^n \equiv 1^n =1 \bmod 3 $$ Therefore, $$ 4^{2^{2n+1}} \equiv 3 \bmod 13 $$

lhf
  • 216,483
0

As you are aware from looking at Euler's theorem, exponents follow a cycle of values in modular arithmetic. Euler's theorem tells you that $4$ follows a cycle of at most $\phi(13)=12$ under $\bmod 13$ arthimetic, but you can immediately see that $4$ is a square and so will follow a cycle of at most $6$ (because its root(s) must follow a cycle of $12$).

So we need to find the value of $2^{2n+1} \bmod 6$ to find out where we are in this cycle. Since $4^n\equiv 4 \bmod 6$ for any $n\in \Bbb N$, we can see that likewise $2^{2n+1} \equiv 2 \bmod 6$ for any $n$.

So $4^{2^{2n+1}}\equiv 4^2\equiv 3 \bmod 13$ as required.

Joffan
  • 39,627
-1

You can prove this by induction.


First, show that this is true for $n=0$:

$4^{2^{2\cdot0+1}}=13+3$

Second, assume that this is true for $n$:

$4^{2^{2n+1}}=13k+3$

Third, prove that this is true for $n+1$:

$4^{2^{2(n+1)+1}}=$

$4^{2^{2n+2+1}}=$

$4^{2^{2n+1+2}}=$

$4^{2^{2n+1}\cdot2^2}=$

$4^{2^{2n+1}\cdot4}=$

$(\color\red{4^{2^{2n+1}}})^4=$

$(\color\red{13k+3})^{4}=$

$28561k^4+26364k^3+9126k^2+1404k+81=$

$28561k^4+26364k^3+9126k^2+1404k+78+3=$

$13(2197k^4+2028k^3+702k^2+108k+6)+3$


Please note that the assumption is used only in the part marked red.

barak manos
  • 43,109