Abstract Algebra 1st week

Abstract Algebra: 1st Week

The first week of abstract algebra is mostly about learning to replace calculation with structure. Instead of asking only how to compute with numbers, matrices, functions, or symmetries, we ask what rules those objects satisfy and what conclusions follow from those rules alone.

A useful starting point is the idea of a binary operation. If S is a set, a binary operation on S is a rule that takes two elements of S and returns another element of S. Addition on the integers is a binary operation because, for any integers a and b, the result a + b is again an integer. Division is not a binary operation on the integers, because 1 / 2 is not an integer.

Groups

A group is a set G together with a binary operation, usually written multiplicatively, satisfying four conditions:

  1. Closure: if a, b \in G, then ab \in G.
  2. Associativity: if a, b, c \in G, then (ab)c = a(bc).
  3. Identity: there is an element e \in G such that ea = ae = a for every a \in G.
  4. Inverse: for every a \in G, there is an element a^{-1} \in G such that aa^{-1} = a^{-1}a = e.

If the operation also satisfies ab = ba for all a, b \in G, then the group is called abelian.

Standard examples include:

  • (\mathbb{Z}, +), the integers under addition.
  • (\mathbb{R} \setminus \{0\}, \times), the nonzero real numbers under multiplication.
  • GL_n(\mathbb{R}), the invertible n \times n real matrices under matrix multiplication.
  • The symmetries of a polygon under composition.

The matrix example is important because it reminds us that a group operation does not need to be commutative. In general, if A and B are matrices, AB and BA may be different.

Basic Checks

When checking whether a proposed structure is a group, it helps to test the axioms in order:

  1. Identify the set.
  2. Identify the operation.
  3. Check closure carefully.
  4. Check associativity, usually by using a known associative operation.
  5. Find the identity element.
  6. Find the inverse of a general element.
  7. Only after that, decide whether the group is abelian.

For example, the positive real numbers under multiplication form an abelian group. Closure holds because the product of two positive real numbers is positive. The identity is 1, and the inverse of a > 0 is 1/a, which is also positive.

By contrast, the positive integers under addition do not form a group. Closure and associativity hold, but there is no additive identity inside the positive integers if 0 is excluded, and additive inverses are also missing.

Subgroups

A subgroup is a subset of a group that is itself a group under the same operation. If H is a subset of G, then H is a subgroup when:

  • H is nonempty,
  • for all a, b \in H, the product ab^{-1} is also in H.

This one-step subgroup test is often faster than checking all group axioms again.

Examples:

  • 2\mathbb{Z} is a subgroup of (\mathbb{Z}, +).
  • n\mathbb{Z} is a subgroup of (\mathbb{Z}, +) for every integer n.
  • The set of rotations of a square is a subgroup of the full symmetry group of the square.

Homomorphisms

A homomorphism is a structure-preserving map between groups. If (G, *) and (H, \cdot) are groups, a function \varphi: G \to H is a homomorphism if

\[\varphi(a * b) = \varphi(a) \cdot \varphi(b)\]

for all a, b \in G.

The point is that the map respects the operation. Homomorphisms allow us to compare groups by comparing their structures instead of just their elements.

Important related definitions:

  • The kernel of \varphi is the set of elements in G sent to the identity of H.
  • The image of \varphi is the set of elements in H that are reached by \varphi.
  • An isomorphism is a bijective homomorphism. If two groups are isomorphic, they have the same group structure even if their elements look different.

LaTeX Notes

The original note also included several LaTeX rendering checks. They are kept here because they are useful for testing Markdown and WordPress equation support:

$latex E=mc^2$

\[E=mc^2\]

\(E=mc^2\)

E=mc^2

$$E=mc^2$$

\[\underset {\epsilon \to 0} \lim \frac{1}{2}\]
\[\lim_{x \to 0} x\]

Exercises for the First Week

  1. Prove that the identity element of a group is unique.
  2. Prove that the inverse of each element of a group is unique.
  3. Show that (\mathbb{Z}, +) is a group.
  4. Show that (\mathbb{Z}, \times) is not a group.
  5. Decide whether the nonzero rational numbers form a group under multiplication.
  6. List all subgroups of (\mathbb{Z}, +) that you can describe in the form n\mathbb{Z}.
  7. Give an example of a non-abelian group and explain why the operation is not commutative.

The main habit for this week is to always separate the set from the operation. Most mistakes in early abstract algebra come from checking facts about the wrong operation or assuming an inverse exists before proving it belongs to the set.

Leave a Reply