Member-only story

Group

DaeGon Kim
2 min readMar 13, 2021

I was a math major in college. The first subject I learned in abstract algebra is Group. It was a very simple entity.

A Group is a tuple (𝐆, βŠ•) of a set 𝐆 and a binary operation βŠ• on the set that satisfy the following properties:

  • Associativity: (π‘ŽβŠ•π‘)βŠ•π‘ = π‘ŽβŠ•(π‘βŠ•π‘) for all π‘Ž, 𝑏, c ∈ 𝐆
  • Identity element: There is an element 𝑒 in 𝐆 such that π‘ŽβŠ•π‘’ = π‘’βŠ•π‘Ž = π‘Ž for all π‘Ž ∈ 𝐆
  • Inverse element: For each element π‘Ž ∈ 𝐆, there is an element 𝑏 such that π‘ŽβŠ•π‘ = π‘βŠ•π‘Ž = 𝑒 where 𝑒 is an identity of 𝐆.

Another requirement is that the binary operation βŠ• is closed under 𝐆. It means that π‘ŽβŠ•π‘ ∈ 𝐆 for all (or any) π‘Ž, 𝑏 ∈ 𝐆

Group may seem to be strange, but we use it in everyday life. An example of Group is a set of integer with binary operation called addition. Guess what its identity element and an inverse element of each element.

Another one is a set of all even numbers (including 0) with the addition.

Now, consider a set of all the odd numbers with the addition.

{…, -5, -3, -1, 1, 2, 3, …}

Is this a group? It is not a group since there is no identity element. Now, add the identity (0).

{…, -5, -3, -1, 0, 1, 2, 3, …}

This has all three properties: associativity, an identity element and an inverse element -π‘Ž for any element π‘Ž. But this is not a group. It is not closed under the addition. 1+3 is not in the set.

There are a lot of groups. A few examples are

  • Set of real numbers with the addition
  • Set of real numbers except the zero element 0 with the multiplication
  • Set of permutations of n elements with the composition

Many things are not a group when they are similar to a group, like a set of integers with the minus operation.

--

--

No responses yet