Skip to content

Commit

Permalink
Sort
Browse files Browse the repository at this point in the history
  • Loading branch information
gl3nnleblanc committed Sep 27, 2024
1 parent 4ac7c58 commit b8d6df5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions equational_theories/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,6 @@ theorem Equation2_implies_Equation7 (G: Type*) [Magma G] (h: Equation2 G) : Equa
theorem Equation2_implies_Equation46 (G: Type*) [Magma G] (h: Equation2 G) : Equation46 G :=
fun _ _ _ _ => h _ _

theorem Equation6_implies_Equation2 (G: Type*) [Magma G] (h: Equation6 G) : Equation2 G := by
intro a b
rw [h a a, ← h b]

theorem Equation7_implies_Equation2 (G: Type*) [Magma G] (h: Equation7 G) : Equation2 G := by
intro a b
rw [h a a a, ←h b]

theorem Equation4_implies_Equation3 (G: Type*) [Magma G] (h: Equation4 G) : Equation3 G := by
intro _
rw [<-h]
Expand All @@ -110,6 +102,18 @@ theorem Equation4_implies_Equation4522 (G: Type*) [Magma G] (h: Equation4 G) : E
intro x y z w u
rw [<-h, <-h, <-h]

theorem Equation6_implies_Equation2 (G: Type*) [Magma G] (h: Equation6 G) : Equation2 G := by
intro a b
rw [h a a, ← h b]

theorem Equation7_implies_Equation2 (G: Type*) [Magma G] (h: Equation7 G) : Equation2 G := by
intro a b
rw [h a a a, ←h b]

theorem Equation7_implies_Equation41 (G: Type*) [Magma G] (h: Equation7 G) : Equation41 G := by
intro x y z
rw [<-h]

theorem Equation46_implies_Equation42 (G: Type*) [Magma G] (h: Equation46 G) : Equation42 G :=
fun _ _ _ => h _ _ _ _

Expand All @@ -119,10 +123,6 @@ theorem Equation46_implies_Equation387 (G: Type*) [Magma G] (h: Equation46 G) :
theorem Equation46_implies_Equation4582 (G: Type*) [Magma G] (h: Equation46 G) : Equation4582 G :=
fun _ _ _ _ _ _ => h _ _ _ _

theorem Equation7_implies_Equation41 (G: Type*) [Magma G] (h: Equation7 G) : Equation41 G := by
intro x y z
rw [<-h]

/-- This proof is from https://mathoverflow.net/a/450905/766 -/
theorem Equation387_implies_Equation43 (G: Type*) [Magma G] (h: Equation387 G) : Equation43 G := by
have idem (x : G) : (x ∘ x) ∘ (x ∘ x) = (x ∘ x) := by
Expand Down

0 comments on commit b8d6df5

Please sign in to comment.