Group
Definition
A group is defined as a set G closed under a binary operation ★ and is usually instantiated as<G,★>.
If our operation ★ = + or is addition, we call this an Additive Group.
If our operation ★ = ∗ or is multiplication, we call this a Multiplicative Group.
Properties
Groups hold 4 properties:
Closure aka “closed”
x★y is in G, for all x,y in G
Associativity
(x★y)★z=x★(y★z), for all x,y,z in G
Identity
There exists a single “e” in G such that x★e=e★x=x
Inverse
There exists an x−1 in G such that x★x−1=x−1★x=e , where “e” refers to the “e” of the identity property
If the Commutative property is also valid (x★y=y★x, for all x,y in G), then the group is called an “Abelian Group.”
Examples
<Z, +> additive for the set of all integers ✅ (valid group)
closure ✅
associativity ✅
identity a+0=0+a=a ✅
inverse a+(−a)=(−a)+a=0 ✅
<Z, ∗> multiplicative for the set of all integers ❌ (not a valid group)
closure ✅
associativity ✅
identity a1=1a=a ✅
inverse a∗a1=a1∗a=1, but a1 does not necessarily exist in Z ❌
Last updated