The Legendre symbol

Content created by Alec Barreto and Fredrik Bakke.

Created on 2023-09-24.
Last modified on 2023-09-26.

module elementary-number-theory.legendre-symbol where
Imports
open import elementary-number-theory.integers
open import elementary-number-theory.modular-arithmetic
open import elementary-number-theory.natural-numbers
open import elementary-number-theory.prime-numbers
open import elementary-number-theory.squares-modular-arithmetic

open import foundation.action-on-identifications-functions
open import foundation.coproduct-types
open import foundation.decidable-types
open import foundation.dependent-pair-types
open import foundation.identity-types

Idea

The Legendre symbol is a function which determines whether or not an integer is a perfect square in the ring ℤₚ of integers modulo p (i.e. whether or not it is a quadratic residue). Specifically, let p : Prime-ℕ be a prime number and a : ℤ be an integer. If a is a square in ℤₚ then legendre(p,a) = 1. Similarly if a is not a square in ℤₚ then legendre(p,a) = -1. Finally if a is congruent to 0 in ℤₚ then legendre(p,a) = 0.

Definition

int-is-square-ℤ-Mod :
  {p : } {k : ℤ-Mod p} 
  is-decidable (is-zero-ℤ-Mod p k) 
  is-decidable (is-square-ℤ-Mod p k) 
  
int-is-square-ℤ-Mod (inl _) _ = zero-ℤ
int-is-square-ℤ-Mod (inr _) (inl _) = one-ℤ
int-is-square-ℤ-Mod (inr _) (inr _) = neg-one-ℤ

legendre-symbol-ℤ-Mod : (p : Prime-ℕ)  ℤ-Mod (nat-Prime-ℕ p)  
legendre-symbol-ℤ-Mod (p , _) k =
  int-is-square-ℤ-Mod
    ( has-decidable-equality-ℤ-Mod p k (zero-ℤ-Mod p))
    ( is-decidable-is-square-ℤ-Mod p k)

legendre-symbol : Prime-ℕ    
legendre-symbol p a = legendre-symbol-ℤ-Mod p (mod-ℤ (nat-Prime-ℕ p) a)

is-periodic-legendre-symbol :
  (p : Prime-ℕ) (a b : ) 
  mod-ℤ (nat-Prime-ℕ p) a  mod-ℤ (nat-Prime-ℕ p) b 
  legendre-symbol p a  legendre-symbol p b
is-periodic-legendre-symbol p _ _ H = ap (legendre-symbol-ℤ-Mod p) H

Recent changes