-
Notifications
You must be signed in to change notification settings - Fork 16
/
coq-mathcomp-odd-order.opam
37 lines (32 loc) · 1.61 KB
/
coq-mathcomp-odd-order.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
opam-version: "2.0"
maintainer: "Mathematical Components <[email protected]>"
homepage: "https://math-comp.github.io/math-comp/"
bug-reports: "Mathematical Components <[email protected]>"
dev-repo: "git+https://github.com/math-comp/odd-order"
license: "CeCILL-B"
version: "dev"
build: [
[make "-j" "%{jobs}%"]
]
install: [ make "install" ]
depends: [
"ocaml"
"coq-mathcomp-character" { (>= "2.0.0") | (= "dev") }
"coq" { >= "8.16" }
]
tags: [ "keyword:finite groups" "keyword:Feit Thompson theorem" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "The formal proof of the Feit-Thompson theorem"
description: """
The formal proof of the Feit-Thompson theorem.
From mathcomp Require Import all_ssreflect all_fingroup all_solvable PFsection14.
Check Feit_Thompson.
: forall (gT : finGroupType) (G : {group gT}), odd #|G| -> solvable G
From mathcomp Require Import all_ssreflect all_fingroup
all_solvable stripped_odd_order_theorem.
Check stripped_Odd_Order.
: forall (T : Type) (mul : T -> T -> T) (one : T) (inv : T -> T)
(G : T -> Type) (n : natural),
group_axioms T mul one inv ->
group T mul one inv G ->
finite_of_order T G n -> odd n -> solvable_group T mul one inv G"""