Skip to content

Commit c369d3f

Browse files
committed
s
1 parent f17e657 commit c369d3f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

group_theory.lean

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
import Mathlib.Data.Real.Basic
2+
import Mathlib.Algebra.Group.Basic
23

34
example {G : Type} [Group G] (g : G) : 1 * g = g := by
45
apply one_mul
6+
example {G : Type} [Group G] (a b c : G) :
7+
(a * b) * c = a * (b * c) := by
8+
apply mul_assoc

0 commit comments

Comments
 (0)