mathlib documentation

number_theory.legendre_symbol.gauss_eisenstein_lemmas

Lemmas of Gauss and Eisenstein #

This file contains code for the proof of the Lemmas of Gauss and Eisenstein on the Legendre symbol. The main results are gauss_lemma_aux and eisenstein_lemma_aux; they are used in quadratic_reciprocity.lean to prove gauss_lemma and eisenstein_lemma, respectively.

@[simp]
theorem zmod.wilsons_lemma (p : ) [fact (nat.prime p)] :
(p - 1)! = -1

Wilson's Lemma: the product of 1, ..., p-1 is -1 modulo p.

@[simp]
theorem zmod.prod_Ico_one_prime (p : ) [fact (nat.prime p)] :
∏ (x : ) in finset.Ico 1 p, x = -1
theorem legendre_symbol.Ico_map_val_min_abs_nat_abs_eq_Ico_map_id (p : ) [hp : fact (nat.prime p)] (a : zmod p) (hap : a 0) :
multiset.map (λ (x : ), (a * x).val_min_abs.nat_abs) (finset.Ico 1 (p / 2).succ).val = multiset.map (λ (a : ), a) (finset.Ico 1 (p / 2).succ).val

The image of the map sending a non zero natural number x ≤ p / 2 to the absolute value of the element of interger in the interval (-p/2, p/2] congruent to a * x mod p is the set of non zero natural numbers x such that x ≤ p / 2

theorem legendre_symbol.gauss_lemma_aux (p : ) [hp : fact (nat.prime p)] [fact (p % 2 = 1)] {a : } (hap : a 0) :
a ^ (p / 2) = (-1) ^ (finset.filter (λ (x : ), p / 2 < ((a) * x).val) (finset.Ico 1 (p / 2).succ)).card
theorem legendre_symbol.eisenstein_lemma_aux (p : ) [fact (nat.prime p)] [fact (p % 2 = 1)] {a : } (ha2 : a % 2 = 1) (hap : a 0) :
(finset.filter (λ (x : ), p / 2 < ((a) * x).val) (finset.Ico 1 (p / 2).succ)).card ∑ (x : ) in finset.Ico 1 (p / 2).succ, x * a / p [MOD 2]
theorem legendre_symbol.div_eq_filter_card {a b c : } (hb0 : 0 < b) (hc : a / b c) :
a / b = (finset.filter (λ (x : ), x * b a) (finset.Ico 1 c.succ)).card
theorem legendre_symbol.sum_mul_div_add_sum_mul_div_eq_mul (p q : ) [hp : fact (nat.prime p)] (hq0 : q 0) :
∑ (a : ) in finset.Ico 1 (p / 2).succ, a * q / p + ∑ (a : ) in finset.Ico 1 (q / 2).succ, a * p / q = (p / 2) * (q / 2)

Each of the sums in this lemma is the cardinality of the set integer points in each of the two triangles formed by the diagonal of the rectangle (0, p/2) × (0, q/2). Adding them gives the number of points in the rectangle.