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 𝐆.

--

--