1

With these kinds of problems, I use congruence, and I aim to get the remainder to be -1, which then gets me pretty close to the solution. On this one I'm kinda stuck. Can't get to that -1.

user10354138
  • 33,239
Gruja
  • 107
  • You say you "use congruence". Can you elaborate a bit on what you mean by that? How did you use congruence, and exactly what result did you get? How close to a solution is "pretty close"? Also note that remainders when dividing are usually required to be non-negative, so maybe you mean 10 instead of -1? – Arthur Jun 01 '19 at 08:21

3 Answers3

1

A very elementary way to calculate this is the following:

First, divide $2019$ by $11$ to get $2019=183\cdot11+6$. Note that $$(183\cdot11+6)^{2021}=6^{2021}+\text{ a multiple of }11$$ so we can calculate the remainder of $6^{2021}/11$ instead.

Now, if you try with lower exponents, can find this:

  • For $6^1$ the remainder is $6$
  • For $6^2$ the remainder is $3$, that is, $6^2=11k_2+3$
  • For $6^3$ we can do $6^3=6(11k_2+3)=11k_3+7$
  • For $6^4$ we can do $6^4=6(11k_3+7)=11k_4+9$

...

  • For $6^{11}$ the remainder is $6$ again.

This suggests that the sequence of the remainders is periodic, and the period is $10$. (Note that we can find the remainder of a power knowing only the remainder of the previous power). That is, if you increase the exponent by $10$ the remainder is the same.

So $6^{2021}/11$ has the same remainder as $6^1/11$, that is, $6$.

Remark: Fermat's theorem, mentioned in other answers, allows to find the period much faster.

ajotatxe
  • 65,084
0

We recall Fermat's little theorem for any prime, p, and $a\ncong 0$ mod p $$a^{p-1}\cong1\text{mod}p$$ $2019\cong6$mod $11$ and $2021\cong1$ mod 10 thus a little rearranging of your equation gives $2019^{2021}\cong 6^{10\gamma+1}\cong 6^{10^\gamma}6\cong6$

0

The remainder of $2019\bmod 11$ is, according to a well known rule, equal to $9-1+0-2=6$. To have the remainder of $2019^{20121}\equiv 6^{2021}$, apply lil' Fermat.

Bernard
  • 175,478
  • @DietrichBurde: It's only an affectionate name for this theorem, and an allusion to a famous comic-strip from the 30s, Lil' Abner. This being said, Lille was not in France at the time of Fermat. – Bernard Jun 01 '19 at 08:53