What is the remainder when $7^{113}$ is divided by $50$? is there any method to approach such question
Asked
Active
Viewed 518 times
-3
-
3Hint: $7^2 = 49 = 50 - 1$. – John Omielan Sep 15 '19 at 05:29
-
4Possible duplicate of How do I compute $a^b,\bmod c$ by hand? – Eric Wofsey Sep 15 '19 at 22:04
-
No, there is no method to approach such a question. That's why no teacher has ever asked a class to solve such a question. – Gerry Myerson Sep 16 '19 at 23:05
1 Answers
3
We know that $7^2=49 \equiv -1 \pmod{50}$, so we can write, that:
$$7^{113}=7 \times (7^2)^{56} \equiv 7 \times (-1)^{56} \equiv 7 \pmod{50}$$

Henno Brandsma
- 242,131

Andronicus
- 3,436
-
1
\pmod{50}
is the correct operator for what you want to achieve; the p in pmod means adding extra parentheses the correct way (this is how I remember it). – Henno Brandsma Sep 15 '19 at 05:52 -