Mercurial > hg > Members > kono > Proof > galois
annotate sym5n.agda @ 205:0525f4dabdbc
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 02 Dec 2020 11:35:54 +0900 |
parents | 59d12d02dfa8 |
children | d782dd481a26 |
rev | line source |
---|---|
68 | 1 open import Level hiding ( suc ; zero ) |
2 open import Algebra | |
184 | 3 module sym5n where |
68 | 4 |
5 open import Symmetric | |
6 open import Data.Unit | |
7 open import Function.Inverse as Inverse using (_↔_; Inverse; _InverseOf_) | |
8 open import Function | |
9 open import Data.Nat hiding (_⊔_) -- using (ℕ; suc; zero) | |
10 open import Relation.Nullary | |
11 open import Data.Empty | |
12 open import Data.Product | |
13 | |
14 open import Gutil | |
15 open import Putil | |
16 open import Solvable using (solvable) | |
17 open import Relation.Binary.PropositionalEquality hiding ( [_] ) | |
18 | |
19 open import Data.Fin | |
88 | 20 open import Data.Fin.Permutation hiding (_∘ₚ_) |
68 | 21 |
88 | 22 infixr 200 _∘ₚ_ |
23 _∘ₚ_ = Data.Fin.Permutation._∘ₚ_ | |
24 | |
184 | 25 sym5solvable : ¬ solvable (Symmetric 5) |
26 sym5solvable = {!!} where | |
68 | 27 |
70 | 28 open import Data.List using ( List ; [] ; _∷_ ) |
184 | 29 open Solvable (Symmetric 5) |
111 | 30 |
153 | 31 open import FLutil |
32 open import Data.List.Fresh hiding ([_]) | |
33 open import Relation.Nary using (⌊_⌋) | |
34 | |
184 | 35 p0id : FL→perm (zero :: zero :: zero :: (zero :: (zero :: f0))) =p= pid |
111 | 36 p0id = pleq _ _ refl |
37 | |
182
eb94265d2a39
Any based proof computation done
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
162
diff
changeset
|
38 open import Data.List.Fresh.Relation.Unary.Any |
eb94265d2a39
Any based proof computation done
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
162
diff
changeset
|
39 open import FLComm |
111 | 40 |
184 | 41 stage4FList = CommFListN 5 2 |
182
eb94265d2a39
Any based proof computation done
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
162
diff
changeset
|
42 |