Built with Alectryon. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use ⌘ instead of Ctrl.
From HoTT Require Import Basics.From HoTT Require Import Basics.Require Import Spaces.Pos.Core Spaces.Int.Require Import Algebra.AbGroups.AbelianGroup.Local Set Universe Minimization ToSet.LocalOpen Scope int_scope.LocalOpen Scope mc_add_scope.(** * The group of integers *)(** See also Cyclic.v for a definition of the integers as the free group on one generator. *)
AbGroup
AbGroup
Type0
MonUnit ?G
Inverse ?G
SgOp ?G
IsHSet ?G
Commutative sg_op
Associative sg_op
LeftIdentity sg_op 0
LeftInverse sg_op inv 0
Type0
exact Int.
MonUnit Int
exact0%int.
Inverse Int
exact int_neg.
SgOp Int
exact int_add.
IsHSet Int
exact _.
Commutative sg_op
exact int_add_comm.
Associative sg_op
exact int_add_assoc.
LeftIdentity sg_op 0
exact int_add_0_l.
LeftInverse sg_op inv 0
exact int_add_neg_l.Defined.(** For every group [G] and element [g : G], the map sending an integer to that power of [g] is a homomorphism. See [ab_mul] for the homomorphism [G -> G] when [G] is abelian. *)
G: Group g: G
GroupHomomorphism abgroup_Z G
G: Group g: G
GroupHomomorphism abgroup_Z G
G: Group g: G
abgroup_Z -> G
G: Group g: G
IsSemiGroupPreserving ?grp_homo_map
G: Group g: G
IsSemiGroupPreserving (grp_pow g)
intros m n; apply grp_pow_add.Defined.(** [ab_mul] (and [grp_pow]) give multiplication in [abgroup_Z]. *)