Built with Alectryon, running Coq+SerAPI v8.19.0+0.19.3. 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.
[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
(** * Cyclic groups *) (** The [n]-th cyclic group is the cokernel of [ab_mul n]. *) Definition cyclic (n : nat) : AbGroup := ab_cokernel (ab_mul (A:=abgroup_Z) n). Definition cyclic_in (n : nat) : abgroup_Z $-> cyclic n := grp_quotient_map.
n: nat
x, y: abgroup_Z

ab_mul y (cyclic_in n x) = cyclic_in n (y * x)%int
n: nat
x, y: abgroup_Z

ab_mul y (cyclic_in n x) = cyclic_in n (y * x)%int
n: nat
x, y: abgroup_Z

cyclic_in n (ab_mul y x) = cyclic_in n (y * x)%int
apply ap, abgroup_Z_ab_mul. Defined.