Top

Module mathcomp.algebra.zmodp

From HB Require Import structures.
From mathcomp Require Import ssreflect ssrfun ssrbool choice eqtype ssrnat seq.
From mathcomp Require Import div fintype bigop finset prime fingroup perm.
From mathcomp Require Import nmodule rings_modules_and_algebras divalg decfield.
From mathcomp Require Import countalg finalg.

 Definition of the additive group and ring Zp, represented as 'I_p

Definitions:
From fintype.v:
    'I_p == the subtype of integers less than p, taken here as the type of
            the integers mod p.
The zmodType structure is declared in nmodule.v,
and the finZmodType structure in finalg.

This file:
Note that while 'I_n.+1 has canonical finZmodType and finGroupType
structures, only 'I_n.+2 has a canonical ring structure (it has, in fact,
a canonical finComUnitRing structure), and hence an associated
multiplicative unit finGroupType. To mitigate the issues caused by the
trivial "ring" (which is, indeed is NOT a ring in the ssralg/finalg
formalization), we define additional notation:
      'Z_p == the type of integers mod (max p 2); this is always a proper
              ring, by constructions. Note that 'Z_p is provably equal to
              'I_p if p > 1, and convertible to 'I_p if p is of the form
              n.+2.
      Zp p == the subgroup of integers mod (max p 1) in 'Z_p; this is thus
              all of 'Z_p if p > 1, and else the trivial group.
units_Zp p == the group of all units of 'Z_p -- i.e., the group of
              (multiplicative) automorphisms of Zp p.
We show that Zp and units_Zp are abelian, and compute their orders.
We use a similar technique to represent the prime fields:
       'F_p == the finite field of integers mod the first prime divisor of
               maxn p 2. This is provably equal to 'Z_p and 'I_p if p is
               provably prime, and indeed convertible to the above if p is
               a concrete prime such as 2, 5 or 23.
Note finally that due to the canonical structures it is possible to use
0%R instead of Zp0, and 1%R instead of Zp1 (for the latter, p must be of
the form n.+2, and 1%R : nat will simplify to 1%N).

Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.

Local Open Scope ring_scope.

Section ZpDef.
Variable p' : nat.
Let p := p'.+1.

Notation Zp1 := (@Zp1 p').
Notation inZp := (inZp p').
Implicit Types x : 'I_p.


 Mod p arithmetic on the finite set {0, 1, 2, ..., p - 1}


HB.instance Definition _ := [finGroupMixin of 'I_p for +%R].


Lemma Zp_mul1z : left_id Zp1 Zp_mul.
Proof.
by move=> x; apply: val_inj; rewrite /= modnMml mul1n modZp. Qed.

Lemma Zp_mulz1 : right_id Zp1 Zp_mul.
Proof.
by move=> x; rewrite Zp_mulC Zp_mul1z. Qed.

Lemma Zp_mulVz x : coprime p x -> Zp_mul (Zp_inv x) x = Zp1.
Proof.
move=> co_p_x; apply: val_inj; rewrite /Zp_inv co_p_x /= modnMml.
by rewrite -(chinese_modl co_p_x 1 0) /chinese addn0 mul1n mulnC.
Qed.

Lemma Zp_mulzV x : coprime p x -> Zp_mul x (Zp_inv x) = Zp1.
Proof.
by move=> Ux; rewrite /= Zp_mulC Zp_mulVz. Qed.

Lemma Zp_intro_unit x y : Zp_mul y x = Zp1 -> coprime p x.
Proof.
case=> yx1; have:= coprimen1 p.
by rewrite -coprime_modr -yx1 coprime_modr coprimeMr; case/andP.
Qed.

Lemma Zp_mulrn x n : x *+ n = inZp (x * n).
Proof.
apply: val_inj => /=; elim: n => [|n IHn]; first by rewrite muln0 modn_small.
by rewrite !GRing.mulrS /= IHn modnDmr mulnS.
Qed.

Local Open Scope group_scope.

Lemma Zp_mulgC : @commutative 'I_p _ mul.
Proof.
exact: Zp_addC. Qed.

Lemma Zp_abelian : abelian [set: 'I_p].
Proof.
exact: FinRing.zmod_abelian. Qed.

Lemma Zp_expg x n : x ^+ n = inZp (x * n).
Proof.
exact: Zp_mulrn. Qed.

Lemma Zp1_expgz x : Zp1 ^+ x = x.
Proof.
rewrite Zp_expg; apply/val_inj.
by move: (Zp_mul1z x) => /(congr1 val).
Qed.

Lemma Zp_cycle : setT = <[Zp1]>.
Proof.
by apply/setP=> x; rewrite -[x]Zp1_expgz inE groupX ?mem_gen ?set11. Qed.

Lemma order_Zp1 : #[Zp1] = p.
Proof.
by rewrite orderE -Zp_cycle cardsT card_ord. Qed.

End ZpDef.

Arguments Zp0 {p'}.
Arguments Zp1 {p'}.
Arguments inZp {p'} i.
Arguments valZpK {p'} x.

#[deprecated(since="mathcomp 2.3.0", use=bigop.big_ord1)]
Notation big_ord1 := big_ord1 (only parsing).

#[deprecated(since="mathcomp 2.3.0", use=bigop.big_ord1_cond)]
Notation big_ord1_cond := big_ord1_cond (only parsing).

Section ZpNzRing.

Variable p' : nat.
Local Notation p := p'.+2.

Lemma Zp_nontrivial : Zp1 != 0 :> 'I_p
Proof.
by []. Qed.

HB.instance Definition _ :=
  GRing.Zmodule_isComNzRing.Build 'I_p
    (@Zp_mulA _) (@Zp_mulC _) (@Zp_mul1z _) (@Zp_mul_addl _) Zp_nontrivial.
HB.instance Definition _ :=
  GRing.ComNzRing_hasMulInverse.Build 'I_p
    (@Zp_mulVz _) (@Zp_intro_unit _) (@Zp_inv_out _).

Lemma Zp_nat n : n%:R = inZp n :> 'I_p.
Proof.
by apply: val_inj; rewrite [n%:R]Zp_mulrn /= modnMml mul1n. Qed.

Lemma natr_Zp (x : 'I_p) : x%:R = x.
Proof.
by rewrite Zp_nat valZpK. Qed.

Lemma natr_negZp (x : 'I_p) : (- x)%:R = - x.
Proof.
by apply: val_inj; rewrite /= Zp_nat /= modn_mod. Qed.

Local Open Scope group_scope.

Lemma unit_Zp_mulgC : @commutative {unit 'I_p} _ mul.
Proof.
by move=> u v; apply: val_inj; rewrite /= GRing.mulrC. Qed.

Lemma unit_Zp_expg (u : {unit 'I_p}) n :
  val (u ^+ n) = inZp (val u ^ n) :> 'I_p.
Proof.
apply: val_inj => /=; elim: n => [|n IHn] //.
by rewrite expgS /= IHn expnS modnMmr.
Qed.

End ZpNzRing.

Definition Zp_trunc p := p.-2.

#[warning="-level-0-notation-not-closed"]
Notation "''Z_' p" := 'I_(Zp_trunc p).+2
  (at level 0, p at level 2, format "''Z_' p") : type_scope.
#[warning="-level-0-notation-not-closed"]
Notation "''F_' p" := 'Z_(pdiv p)
  (at level 0, p at level 2, format "''F_' p") : type_scope.

Arguments natr_Zp {p'} x.

Section ZpNzRing.

Import GRing.Theory.

Lemma add_1_Zp p (x : 'Z_p) : 1 + x = ordS x.
Proof.
by case: p => [|[|p]] in x *; apply/val_inj. Qed.

Lemma add_Zp_1 p (x : 'Z_p) : x + 1 = ordS x.
Proof.
by rewrite addrC add_1_Zp. Qed.

Lemma sub_Zp_1 p (x : 'Z_p) : x - 1 = ord_pred x.
Proof.
by apply: (addIr 1); rewrite addrNK add_Zp_1 ord_predK. Qed.

Lemma add_N1_Zp p (x : 'Z_p) : -1 + x = ord_pred x.
Proof.
by rewrite addrC sub_Zp_1. Qed.

End ZpNzRing.

Section Groups.

Variable p : nat.

Definition Zp := if p > 1 then [set: 'Z_p] else 1%g.
Definition units_Zp := [set: {unit 'Z_p}].

Lemma Zp_cast : p > 1 -> (Zp_trunc p).+2 = p.
Proof.
by case: p => [|[]]. Qed.

Lemma val_Zp_nat (p_gt1 : p > 1) n : (n%:R : 'Z_p) = (n %% p)%N :> nat.
Proof.
by rewrite Zp_nat /= Zp_cast. Qed.

Lemma Zp_nat_mod (p_gt1 : p > 1)m : (m %% p)%:R = m%:R :> 'Z_p.
Proof.
by apply: ord_inj; rewrite !val_Zp_nat // modn_mod. Qed.

Lemma pchar_Zp : p > 1 -> p%:R = 0 :> 'Z_p.
Proof.
by move=> p_gt1; rewrite -Zp_nat_mod ?modnn. Qed.

Lemma unitZpE x : p > 1 -> ((x%:R : 'Z_p) \is a GRing.unit) = coprime p x.
Proof.
move=> p_gt1; rewrite qualifE /=.
by rewrite val_Zp_nat ?Zp_cast ?coprime_modr.
Qed.

Lemma Zp_group_set : group_set Zp.
Proof.
by rewrite /Zp; case: (p > 1); apply: groupP. Qed.
Canonical Zp_group := Group Zp_group_set.

Lemma card_Zp : p > 0 -> #|Zp| = p.
Proof.
rewrite /Zp; case: p => [|[|p']] //= _; first by rewrite cards1.
by rewrite cardsT card_ord.
Qed.

Lemma mem_Zp x : p > 1 -> x \in Zp
Proof.
by rewrite /Zp => ->. Qed.

Canonical units_Zp_group := [group of units_Zp].

Lemma card_units_Zp : p > 0 -> #|units_Zp| = totient p.
Proof.
move=> p_gt0; transitivity (totient p.-2.+2); last by case: p p_gt0 => [|[|p']].
rewrite cardsT card_sub -sum1_card big_mkcond /=.
by rewrite totient_count_coprime big_mkord.
Qed.

Lemma units_Zp_abelian : abelian units_Zp.
Proof.
by apply/centsP=> u _ v _; apply: unit_Zp_mulgC. Qed.

End Groups.

#[deprecated(since="mathcomp 2.4.0", use=pchar_Zp)]
Notation char_Zp := (pchar_Zp) (only parsing).


Section PrimeField.

Open Scope ring_scope.

Variable p : nat.

Section F_prime.

Hypothesis p_pr : prime p.

Lemma Fp_Zcast : Zp_trunc (pdiv p) = Zp_trunc p.
Proof.
by rewrite /pdiv primes_prime. Qed.

Lemma Fp_cast : (Zp_trunc (pdiv p)).+2 = p.
Proof.
by rewrite Fp_Zcast ?Zp_cast ?prime_gt1. Qed.

Lemma card_Fp : #|'F_p| = p.
Proof.
by rewrite card_ord Fp_cast. Qed.

Lemma val_Fp_nat n : (n%:R : 'F_p) = (n %% p)%N :> nat.
Proof.
by rewrite Zp_nat /= Fp_cast. Qed.

Lemma Fp_nat_mod m : (m %% p)%:R = m%:R :> 'F_p.
Proof.
by apply: ord_inj; rewrite !val_Fp_nat // modn_mod. Qed.

Lemma pchar_Fp : p \in [pchar 'F_p].
Proof.
by rewrite !inE -Fp_nat_mod p_pr ?modnn. Qed.

Lemma pchar_Fp_0 : p%:R = 0 :> 'F_p.
Proof.
exact: GRing.pcharf0 pchar_Fp. Qed.

Lemma unitFpE x : ((x%:R : 'F_p) \is a GRing.unit) = coprime p x.
Proof.
by rewrite pdiv_id // unitZpE // prime_gt1. Qed.

End F_prime.

Lemma Fp_fieldMixin : GRing.ComUnitRing_isField 'F_p.
Proof.
constructor => x nzx.
rewrite qualifE /= prime_coprime ?gtnNdvd ?lt0n //.
case: (ltnP 1 p) => [lt1p | ]; last by case: p => [|[|p']].
by rewrite Zp_cast ?prime_gt1 ?pdiv_prime.
Qed.

HB.instance Definition _ := Fp_fieldMixin.
HB.instance Definition _ := FinRing.isField.Build 'F_p.

End PrimeField.

Section Sym.

Import GRing.Theory.

Lemma gen_tperm_step n (k : 'I_n.+1) : coprime n.+1 k ->
  <<[set tperm i (i + k) | i : 'I_n.+1]>>%g = [set: 'S_n.+1].
Proof.
case: n k => [|n] k.
  move=> _; apply/eqP; rewrite eqEsubset subsetT/= -(gen_tperm 0)/= gen_subG.
  apply/subsetP => s /imsetP[/= [][|//] lt01 _ ->].
  have ->: (Ordinal lt01) = 0 by apply/val_inj.
  by rewrite tperm1 group1.
rewrite -unitZpE// natr_Zp => k_unit.
apply/eqP; rewrite eqEsubset subsetT/= -(gen_tperm 0)/= gen_subG.
apply/subsetP => s /imsetP[/= i _ ->].
rewrite -[i](mulVKr k_unit) -[_ * i]natr_Zp mulr_natr.
elim: (val _) => //= {i} [|[|i] IHi]; first by rewrite tperm1 group1.
  by rewrite mulrSr mem_gen//; apply/imsetP; exists 0.
have [->|kS2N0] := eqVneq (k *+ i.+2) 0; first by rewrite tperm1 group1.
have kSSneqkS : k *+ i.+2 != k *+ i.+1.
  rewrite -subr_eq0 -mulrnBr// subSnn mulr1n.
  by apply: contraTneq k_unit => ->; rewrite unitr0.
rewrite -(@tpermJ_tperm _ (k *+ i.+1)) 1?eq_sym//.
rewrite groupJ// 1?tpermC// mulrSr 1?tpermC.
by rewrite mem_gen//; apply/imsetP; exists (k *+ i.+1).
Qed.

Lemma perm_addr1X n m (j k : 'I_n.+1) : (perm (addrI m%R) ^+ j)%g k = m *+ j + k.
Proof.
by rewrite permX (eq_iter (permE _)) iter_addr. Qed.

Lemma gen_tpermn_circular_shift n (i j : 'I_n.+2)
    (c := perm (addrI 1)) : coprime n.+2 (j - i)%R ->
  <<[set tperm i j ; c]>>%g = [set: 'S_n.+2].
Proof.
move=> jBi_coprime; apply/eqP; rewrite eqEsubset subsetT/=.
rewrite -(gen_tperm_step jBi_coprime) gen_subG.
apply/subsetP => s /imsetP[/= k _ ->].
suff -> : tperm k (k + (j - i)) = (tperm i j ^ c ^+ (k - i)%R)%g.
  by rewrite groupJ ?groupX ?mem_gen ?inE ?eqxx ?orbT.
by rewrite tpermJ !perm_addr1X natr_Zp addrNK addrAC addrA.
Qed.

End Sym.

#[deprecated(since="mathcomp 2.4.0", use=pchar_Fp)]
Notation char_Fp := (pchar_Fp) (only parsing).

#[deprecated(since="mathcomp 2.4.0", use=pchar_Fp_0)]
Notation char_Fp_0 := (pchar_Fp_0) (only parsing).