Difference between revisions of "Number Theory Problems and Results"
m |
m (→Results) |
||
Line 4: | Line 4: | ||
==Results== | ==Results== | ||
+ | |||
+ | Here includes some important results for number theory. | ||
+ | |||
+ | Wilson's Theorem: | ||
+ | For a prime number <math>p</math> we have | ||
+ | |||
+ | <cmath>(p-1)! \congruent -1 \pmod p</cmath> | ||
==Problems== | ==Problems== |
Revision as of 20:50, 30 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
Here includes some important results for number theory.
Wilson's Theorem: For a prime number we have
\[(p-1)! \congruent -1 \pmod p\] (Error compiling LaTeX. Unknown error_msg)
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