mit18_701f21_lect1
mit18_701f21_lect1
mit18_701f21_lect1
1 Groups
1.1 Introduction
The lecturer is Davesh Maulik. These notes are taken by Jakin Ng, Sanjana Das, and Ethan Yang.
Here is some basic information about the class:
• The text used in this class will be the 3rd edition of Algebra, by Artin.
• The course website is found on Canvas, and the problem sets will be submitted on Gradescope.
• The problem sets will be due every Tuesday at midnight.
Throughout this semester, we will discuss the fundamentals of linear algebra and group theory, which is the
study of symmetries. In this class, we will mostly study groups derived from geometric objects or vector spaces,
but in the next course, 18.7021 , more exotic groups will be studied.
As a review of basic linear algebra, let’s review invertible matrices.
Defnition 1.1
An n×n matrixa A is invertible if there exists some other matrix A−1 such that AA−1 = A−1 A = I, the
n×n identity matrix. Equivalently, A is invertible if and only if the determinant det(A) ̸= 0.
a An array of numbers (or some other type of object) with n rows and n columns
Example 1.2 (n
= 2)
a b d −b
Let A = be a 2×2 matrix. Then its inverse A−1 is 1
.
c d ad−bc −c a
Throughout the course, we will be returning to this example to illustrate various concepts that we learn about.
Guiding Question
How can we generalize the nice properties of matrices and matrix multiplication in a useful way?
Given two matrices A, B ∈ GLn (R), there is an operation combining them, in particular matrix multiplication,
which returns a matrix AB ∈ GLn (R).2 The matrices under matrix multiplication satisfy several properties:
• Noncommutativity. Matrix multiplication is noncommutative, which means that AB is not necessarily
the same matrix as BA. So the order that they are listed in does matter.
• Associativity. This means that (AB)C = A(BC), which means that the matrices to be multiplied can
be grouped together in diferent confgurations. As a result, we can omit parentheses when writing the
product of more than two matrices.
• Inverse. The product of two invertible matrices is also invertible. In particular,
(AB)−1 = B −1 A−1 .
1 Algebra 2
2 Since the determinant is multiplicative, det(AB) = det(A) det(B), which is nonzero.
5
Lecture 1: Groups
Another way to think of matrices is as an operation on a diferent space. Given a matrix A ∈ GLn (R), a function
or transformation on Rn3 can be associated to it, namely
TA : Rn −→ Rn
#»
v = (x1 , · · · , xn ) 7−→ A #v»4 .
Since A #v» is the matrix product, we notice that TAB ( #v») = TA (TB ( #v»)), and so matrix multiplication is the same
as function composition.
With this motivation, we can defne the notion of a group.
G×G −→ G
(a, b) 7−→ a · b5
In the defnition, both the frst and second conditions automatically give us a unique inverse and identity. For
example, if e and e′ both satisfy property 1, then e · e′ = e = e′ , so they must be the same element. A similar
argument holds for inverses.
Why does associativity matter? It allows us to defne the product g1 · g2 · · · · · gn without the parentheses
indicating which groupings they’re multiplied in.
Defnition 1.5
Let g taken to the power n be the element g n = g · · · · · g for n > 0, g n = g −1 · · · · · g −1 for n < 0, and e for
| {z } | {z }
n times n times
n = 0.
Example 1.6
Some common groups include:
Group Composition Law Identity Inverse
GLn (R)a matrix multiplication In A 7→ A−1
Zb + 0 n 7→ −n
×
C = C \ {0}c × 1 z 7→ z1
a The general linear group
b The integers under addition
c The complex numbers (except 0) under multiplication
For the last two groups, there is additional structure: the composition law is commutative. This motivates the
following defnition.
Defnition 1.7
A group G is abelian if a · b = b · a for all a, b ∈ G. Otherwise, G is called nonabelian.
6
Lecture 1: Groups
Defnition 1.8
Given a set S, a permutation of S is a bijection a p : S −→ S.
a A function f : A −→ B is a bijection if for all y ∈ B, there exists a unique x ∈ A such that f (x) = y. Equivalently, it
Defnition 1.9
Let Perm(S) be the set of permutations of S.
Defnition 1.10
When S = {1, 2, · · · , n}, the permutation group Perm(S) is called the symmetric group, denoted Sn .
Defnition 1.11
For a group G, the number of elements in the set G, |G|, is called the order of the group G, denoted |G|
or ord(G).
The order of the symmetric group is |Sn | = n!7 so the symmetric group Sn is a fnite group.
For n = 6, consider the two permutations p and q
i 1 2 3 4 5 6
p(i) 2 4 5 1 3 6
i 1 2 3 4 5 6
,
q(i) 3 4 5 6 1 2
where the upper number is mapped to the lower number.
We can also write these in cycle notation, which is a shorthand way of describing a permutation that does not
afect what the permutation actually is. In cycle notation, each group of parentheses describes a cycle, where
the number is mapped to the following number, and it wraps around.
7
Lecture 1: Groups
Similarly, q is written as (135)(246).8 In cycle notation, it is clear that there are multiple ways to write or
represent the same permutation. For example, p could have been written as (241)(53) instead, but it represents
the same element p ∈ S6 .
Cycle notation allows us to more easily invert or compose two permutations; we simply have to follow where
each number maps to.
other element!
8
Lecture 1: Groups
x3 = e.
Higher powers are just x4 = x, x5 = x2 , and so on. Now, we can introduce y = (12), which is its own
inverse, and so
y2 = e .
Taking products gives xy = (13) and x2 y = (23). So we have all six elements of S3 :
In fact, yx = (23) = x2 y, so taking products in the other order does not provide any new elements. The
relation
yx = x2 y
holds. In particular, using the boxed relations, we can compute any crazy combination of x and y and
reduce it to one of the elements we listed. For example, xyx−1 y = xyx2 y = xyyx = xy 2 x = x2 .