Difference between revisions of "Number Theory Problems and Results"
m (→Problems) |
|||
Line 13: | Line 13: | ||
Find the remainder when <math>\min{x}</math> is divided by 1000. | Find the remainder when <math>\min{x}</math> is divided by 1000. | ||
− | Solution 1 (Euler's Totient Theorem) | + | ==Solution== |
+ | |||
+ | ===Solution 1 to Problem 1(Euler's Totient Theorem)=== | ||
+ | |||
We first simplify <math>2^4 \cdot 3^4 \cdot 7^4+2^7 \cdot 3^7 \cdot 5^6:</math> | We first simplify <math>2^4 \cdot 3^4 \cdot 7^4+2^7 \cdot 3^7 \cdot 5^6:</math> | ||
Revision as of 20:27, 28 December 2024
This is a page where you can learn about number theory and its applications. There are important results and practice problems.
Contents
Introduction
Results
Problems
1. Suppose
Find the remainder when is divided by 1000.
Solution
Solution 1 to Problem 1(Euler's Totient Theorem)
We first simplify
so
.
where the last step of all 3 congruences hold by the Euler's Totient Theorem. Hence,
Now, you can bash through solving linear congruences, but there is a smarter way. Notice that , and . Hence, , so . With this in mind, we proceed with finding .
Notice that and that . Therefore, we obtain the system of congruences :
.
Solving yields , and we're done. ~Ddk001