Created
June 30, 2018 21:36
-
-
Save tangentstorm/fc5aa7e3e22d595dcdfcfb5abdc30d4c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* Simple Group Theory from Scratch *) | |
theory MJWGroups | |
imports Pure | |
begin | |
locale group = | |
fixes op :: "'g β 'g β 'g" (infixl "β" 65) | |
fixes id :: "'g" ("π¦") | |
fixes inv :: "'g β 'g" | |
assumes assoc: "(a β b) β c == a β (b β c)" | |
and ident: "a β π¦ == a" | |
and t1: "((a=b) β§ (c=d)) = ((a β b) = (c β d))" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment