Contents
Jacobi symbol
Jacobi symbol (k⁄n) for various k (along top) and n (along left side). Only 0 ≤ k < n are shown, since due to rule (2) below any other k can be reduced modulo n. Quadratic residues are highlighted in yellow — note that no entry with a Jacobi symbol of −1 is a quadratic residue, and if k is a quadratic residue modulo a coprime n, then (k⁄n) = 1, but not all entries with a Jacobi symbol of 1 (see the n = 9 and n = 15 rows) are quadratic residues. Notice also that when either n or k is a square, all values are nonnegative. The Jacobi symbol is a generalization of the Legendre symbol. Introduced by Jacobi in 1837, it is of theoretical interest in modular arithmetic and other branches of number theory, but its main use is in computational number theory, especially primality testing and integer factorization; these in turn are important in cryptography.
Definition
For any integer a and any positive odd integer n, the Jacobi symbol (a⁄n) is defined as the product of the Legendre symbols corresponding to the prime factors of n: where is the prime factorization of n. The Legendre symbol (a⁄p) is defined for all integers a and all odd primes p by Following the normal convention for the empty product, (a⁄1) = 1. When the lower argument is an odd prime, the Jacobi symbol is equal to the Legendre symbol.
Table of values
The following is a table of values of Jacobi symbol (k⁄n) with n ≤ 59, k ≤ 30, n odd.
Properties
The following facts, even the reciprocity laws, are straightforward deductions from the definition of the Jacobi symbol and the corresponding properties of the Legendre symbol. The Jacobi symbol is defined only when the upper argument ("numerator") is an integer and the lower argument ("denominator") is a positive odd integer. If either the top or bottom argument is fixed, the Jacobi symbol is a completely multiplicative function in the remaining argument: The law of quadratic reciprocity: if m and n are odd positive coprime integers, then and its supplements and Combining properties 4 and 8 gives: Like the Legendre symbol: But, unlike the Legendre symbol: This is because for a to be a quadratic residue modulo n, it has to be a quadratic residue modulo every prime factor of n. However, the Jacobi symbol equals one if, for example, a is a non-residue modulo exactly two of the prime factors of n. Although the Jacobi symbol cannot be uniformly interpreted in terms of squares and non-squares, it can be uniformly interpreted as the sign of a permutation by Zolotarev's lemma. The Jacobi symbol (a⁄n) is a Dirichlet character to the modulus n.
Calculating the Jacobi symbol
The above formulas lead to an efficient O(log a log b) algorithm for calculating the Jacobi symbol, analogous to the Euclidean algorithm for finding the gcd of two numbers. (This should not be surprising in light of rule 2.) In addition to the code below, Riesel has it in Pascal.
Implementation in Lua
Implementation in C++
Example of calculations
The Legendre symbol (a⁄p) is only defined for odd primes p. It obeys the same rules as the Jacobi symbol (i.e., reciprocity and the supplementary formulas for (−1⁄p) and (2⁄p) and multiplicativity of the "numerator".) Problem: Given that 9907 is prime, calculate (1001⁄9907).
Using the Legendre symbol
Using the Jacobi symbol
The difference between the two calculations is that when the Legendre symbol is used the "numerator" has to be factored into prime powers before the symbol is flipped. This makes the calculation using the Legendre symbol significantly slower than the one using the Jacobi symbol, as there is no known polynomial-time algorithm for factoring integers. In fact, this is why Jacobi introduced the symbol.
Primality testing
There is another way the Jacobi and Legendre symbols differ. If the Euler's criterion formula is used modulo a composite number, the result may or may not be the value of the Jacobi symbol, and in fact may not even be −1 or 1. For example, So if it is unknown whether a number n is prime or composite, we can pick a random number a, calculate the Jacobi symbol (a⁄n) and compare it with Euler's formula; if they differ modulo n, then n is composite; if they have the same residue modulo n for many different values of a, then n is "probably prime". This is the basis for the probabilistic Solovay–Strassen primality test and refinements such as the Baillie–PSW primality test and the Miller–Rabin primality test. As an indirect use, it is possible to use it as an error detection routine during the execution of the Lucas–Lehmer primality test which, even on modern computer hardware, can take weeks to complete when processing Mersenne numbers over (the largest known Mersenne prime as of October 2024). In nominal cases, the Jacobi symbol: This also holds for the final residue and hence can be used as a verification of probable validity. However, if an error occurs in the hardware, there is a 50% chance that the result will become 0 or 1 instead, and won't change with subsequent terms of (unless another error occurs and changes it back to -1).
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.