2

I've a question: How do I calculate $2^{2020} + 3^{2020}\pmod{11}$?

Is there a theorem or any trick to do it? I need to show all the steps I used to calculate the Rest but I've no clue how to even start with the calculation...

Does anyone have any tips and could show me how to calculate it?

Greetings!!!

Quiet_waters
  • 1,493
Default
  • 61

3 Answers3

3

Hints:

  • It suffices to compute $2^{2020} \mod 11$ and $3^{2020} \mod 11$ separately, and add them together modulo $11$.
  • Try computing $2^n \mod 11$ for $n = 1, 2, 3, \ldots$. Do you see a pattern?
  • Do the same for $3^n \mod 11$.
angryavian
  • 89,882
  • Thank you very much for your answer!!! I could solve it now by lookin at them separately as you adviced me to! – Default Nov 07 '19 at 15:37
3

Hint:

By Fermat's little theorem, $2^{10}\equiv3^{10}\equiv1\mod 11$.

J. W. Tanner
  • 60,406
1

The answer of angryavian is great. As a small addendum: Once $\mathbb{Z}_{11}$ is a field, because $11$ is prime, so there are $n,m$ naturals s.t. $2^n,3^m$ are both $\equiv 1\pmod{11}$. You could try to find these numbers. It would be very good to computation, right?

====

Edit: The answer above is the great Theorem for that, I was typing before the answer. Well, hope all clues can help you. Good studies!

Quiet_waters
  • 1,493