We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f17e657 commit c369d3fCopy full SHA for c369d3f
group_theory.lean
@@ -1,4 +1,8 @@
1
import Mathlib.Data.Real.Basic
2
+import Mathlib.Algebra.Group.Basic
3
4
example {G : Type} [Group G] (g : G) : 1 * g = g := by
5
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