feat(library/algebra/group_power): add times (additive variant of power)

This commit is contained in:
François G. Dorais 2015-08-03 12:25:33 -04:00
parent 11b1f416f6
commit 155e22c92c

View file

@ -584,6 +584,7 @@ section add_comm_group
theorem sub_eq_sub_add_sub (a b c : A) : a - b = c - b + (a - c) := theorem sub_eq_sub_add_sub (a b c : A) : a - b = c - b + (a - c) :=
by rewrite [add_sub, sub_add_cancel] ⬝ !add.comm by rewrite [add_sub, sub_add_cancel] ⬝ !add.comm
end add_comm_group end add_comm_group
definition group_of_add_group (A : Type) [G : add_group A] : group A := definition group_of_add_group (A : Type) [G : add_group A] : group A :=