From ba1053c19ee10cfb2f28318d2fab8577d56eb749 Mon Sep 17 00:00:00 2001 From: Andres Erbsen Date: Thu, 7 Jan 2016 15:03:32 -0500 Subject: fix unverified typo in fermat proof --- src/Scratch/fermat.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Scratch/fermat.v b/src/Scratch/fermat.v index 7871db92f..947ffce15 100644 --- a/src/Scratch/fermat.v +++ b/src/Scratch/fermat.v @@ -42,7 +42,7 @@ Section Fq. Axiom inv : Fq -> Fq. Axiom inv_spec : forall a, inv a * a = one. - Definition div a b := add a (inv b). + Definition div a b := mul a (inv b). Infix "/" := div. Fixpoint replicate {T} n (x:T) : list T := match n with O => nil | S n' => x::replicate n' x end. -- cgit v1.2.3