Skip to content

Commit

Permalink
tensor products of abelian groups
Browse files Browse the repository at this point in the history
Signed-off-by: Ali Caglayan <[email protected]>
  • Loading branch information
Alizter committed Jul 9, 2024
1 parent c6a8dc4 commit bc8b278
Show file tree
Hide file tree
Showing 6 changed files with 762 additions and 1 deletion.
6 changes: 6 additions & 0 deletions theories/Algebra/AbGroups/AbelianGroup.v
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ Defined.
Definition QuotientAbGroup (G : AbGroup) (H : Subgroup G) : AbGroup
:= (Build_AbGroup (QuotientGroup' G H (isnormal_ab_subgroup G H)) _).

Definition quotient_abgroup_map (G : AbGroup) (H : Subgroup G)
: GroupHomomorphism G (QuotientAbGroup G H).
Proof.
snrapply grp_quotient_map.
Defined.

Definition quotient_abgroup_rec {G : AbGroup}
(N : Subgroup G) (H : AbGroup)
(f : GroupHomomorphism G H) (h : forall n : G, N n -> f n = mon_unit)
Expand Down
13 changes: 13 additions & 0 deletions theories/Algebra/AbGroups/Abelianization.v
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,19 @@ Section AbelGroup.
Proof.
by unfold IsSemiGroupPreserving.
Defined.

Global Instance ismonoidpreserving_ab : IsMonoidPreserving ab.
Proof.
split.
1: exact _.
reflexivity.
Defined.

(** [ab] preserves negation *)
Definition ab_negate x : ab (-x) = - ab x.
Proof.
exact (preserves_negate (f:=ab) x).
Defined.

End AbelGroup.

Expand Down
Loading

0 comments on commit bc8b278

Please sign in to comment.