Group Theory Through Problems
A group is an algebraic structure that abstracts the notion of permutations of a set, or more generally, symmetries of an object. Formally a group is a pair (G,⋅) consisting of a set G and a binary operation ⋅:G×G→G satisfying the properties or group axioms given below.
- The operation ⋅ is associative -- For all elements x,y,z∈G, x⋅(y⋅z)=(x⋅y)⋅z.
- G has an identity element -- There exists an element e∈G, such that for every element x∈G, e⋅x=x⋅e=x.
- Every element of G has an inverse in G -- For every x∈G, there exists a y∈G such that x⋅y=y⋅x=e.
The second axiom mandates that an empty set not be a group. By definition of ⋅ as a binary operation on G, it is true that G is closed under ⋅ -- i.e. for any two elements x,y∈G, the element x⋅y is also in G. Where there is no potential ambiguity, we drop the operator ⋅, and simply write xy instead of x⋅y.
A group G is called Abelian if, in addition to the above four axioms, it satisfies the axiom of commutativity. That is, for every pair of elements x,y∈G, xy=yx.
Exercise 1
Verify that each of the following is a group.
- (Z,+), the set of integers under the operation of addition.
- (Q,+), the set of rational numbers under addition.
- (Q∗,×), the set of non-zero rational numbers under multiplication.
- (R,+), the set of real numbers under addition
- (R∗,×), the set of non-zero real numbers under multiplication.
- (Q>0,×), the set of positive rational numbers under multiplication.
- (R>0,×), the set of positive real numbers under multiplication.
- (I,⊕), with I=[0,1), and ⊕ defined as ∀x,y∈I,x⊕y=(x+y)−⌊x+y⌋ where ⌊⋅⌋ denotes the floor function (greatest integer function).
- GLn(R), the set of all real n×n non-singular matrices, together with the operation of matrix multiplication.
- (AA,∘), the set of all bijective mappings (permutations) from a non-empty set A to itself, under ∘, the composition of mappings.
Exercise 2
Which of the groups in Exercise 1 are Abelian?
Exercise 3
Show that the following are not groups.
- (N0,+), the set of natural numbers together with zero, under addition.
- (Z,−), the set of integers under subtraction.
- (R,×), the set of all real numbers under multiplication.
- (Z∗,×), the set of non-zero integers under multiplication.
The group axioms state that every group has an identity element, and every element in a group has an inverse element in the group. But we may notice in all the examples of groups seen so far, that every group has a unique identity element, and every element in the group has a unique inverse. This is, in fact, true for all groups.
Exercise 4
Prove that every group has a unique element e satisfying
∀x∈G,ex=xe=x,
and that for each element x∈G, there is a unique element y∈G satisfying
xy=yx=e.
Hint: Assume there is another element e′∈G satisfying the first property, and show that e=e′. Similarly, assume that there is another element z∈G satisfying the second property, and show that y=z.
Now, we may speak of the identity element of a group, and the inverse of an element of the group. As every element x of a group G has a unique inverse, we may denote it by x−1.
Exercise 5
Prove that for any two elements x and y in a group G, (xy)−1=y−1x−1.
Exercise 6
Prove that a group G is Abelian if x−1=x for all elements x∈G.
Thanks to associativity, we can write the product xn=x⋅x⋯x⏟n without ambiguity, for any natural number n (why? You are asked to prove this in the exercise below). Generalizing this, we can define x0=e, the identity element, and x−n=(x−1)n. Thus, xn is well-defined for every integer n.
Exercise 7
Prove, by mathematical induction, that the product x⋅x⋯x⏟n is well-defined. That is, if we define xn=x(x(⋯(x)⋯))⏟n, for any natural number n, show that xm⋅xn=xm+n. Also prove that for any integers m and n, xm⋅xn=xm+n, and that x−n=(xn)−1.
Clearly, it is not true in general that for distinct elements x and y of a group G, (xy)n=xnyn. But in an Abelian group, this is always true. Indeed, we can even prove a partial converse.
Exercise 8
Prove that a group G is Abelian if and only if for all elements x,y∈G, (xy)2=x2y2.