Quadratic Residues
Integers which are perfect squares are rare; only about of the integers in the set are perfect squares. On the other hand, given an odd prime , integers that are squares modulo are relatively common. In fact, it turns out that exactly half of the integers between and are squares mod ; that is, the congruence mod has a solution for exactly half of the values of in .
If and are coprime integers, then is called a quadratic residue modulo if the congruence has a solution.Likewise, if it has no solution, then it is called a quadratic non-residue modulo .
The natural next question is, "Given what are the quadratic residues mod " This question and its answer are of great interest in number theory and cryptography.
Contents
An Explicit Example
Find the quadratic residues mod .
When , .
When , .
When , .
When , .
When , .
When , .
When , .
When , .
When , .
When , .
When , .So the quadratic residues mod are , and the non-residues are .
Note: A number that is congruent to is neither a residue nor a non-residue.
Number of Residues
Notice that the numbers that are colored above are in the order of . That is,
- the first number and the last number are equal;
- the second number and the second last number are equal;
- the third number and the third last number are equal, and so on.
This is because . So the squares of the first half of the nonzero numbers mod give a complete list of the nonzero quadratic residues mod . In general, we have the following fact:
Fact: If is an odd prime, the residue classes of are distinct and give a complete list of the quadratic residues modulo . So there are residues and non-residues (note that we are not counting 0, as mentioned above).
They give a complete list because and are the same mod as in the example. To see that they are distinct, note that
which is impossible if and are two different members of the set .
What is the remainder obtained after the sum of all the quadratic residues of any prime is divided by itself?
Application to a Famous Theorem
Let be a prime. Show that the congruence mod always has a solution .
It is clear for , so assume is odd. The above work shows that there are elements of that can be written as mod , and for the same reason there are elements of that can be written as mod . Since the sum of the sizes of these two subsets is and has elements, the two subsets must overlap somewhere, i.e.
for some .
The above result happens to be a key lemma in the proof of Lagrange's famous four squares theorem, which states that every positive integer can be written as a sum of four integer squares. (See the wiki Sum of Squares Theorems.)
Solving Diophantine Equations
The techniques used to compute quadratic residues mod are contained in the article on Legendre symbols. This section focuses on general quadratic Diophantine equations, including situations where the modulus is not prime.
For quadratic Diophantine equations, completing the square is often helpful.
Determine whether there exists an integer such that divides .
Modulo 37, we have
So this has a solution if and only if is a quadratic residue mod . By inspection, mod , so the equation has solutions; setting gives as one of them.
Find the smallest positive prime number that divides for some integer .
For composite modulus, the Chinese remainder theorem is an important tool to break the problem down into prime power moduli.
Determine the number of positive integers less than 1000 such that when is divided by 840, it leaves a remainder of 60.
Converting it into a congruence, we have . Factoring 840 into a product of prime powers gives .
So we have .
The first two congruences imply mod .
Solving the other two congruences shows that .By the Chinese remainder theorem, and .
By the Chinese remainder theorem again, .With the restriction of , there are solutions in all: .
If , then find the total number of possible values of integers such that there exists an integer that satisfies the equation above.
Let
There are possibilities for the units digit of a perfect square when it is represented in base Compute the last three digits of (in base 10).
Details and Assumptions:
- We are talking about in their decimal representations.
- You might want to use the fact that are all primes.