groups and Abelian groups
In discrete structures, particularly in abstract algebra, a group is a fundamental algebraic structure that consists of a set equipped with an operation that satisfies four key properties:
Definition of a Group
A group (G, ) is a set G with a binary operation **()** that satisfies the following properties:
Closure: For all a, b ∈ G, the result of the operation a * b is also in G.
Associativity: For all a, b, c ∈ G, the operation is associative.
Identity Element: There exists an element e ∈ G such that for all a ∈ G,
This element e is called the identity element.
Inverse Element: For every a ∈ G, there exists an element a⁻¹ ∈ G such that:
where a⁻¹ is the inverse of a.
Types of Groups
Abelian (Commutative) Group: If a group also satisfies the commutative property,
then it is called an Abelian group (named after Niels Henrik Abel).
Example: (Z, +), the set of integers under addition.Non-Abelian (Non-Commutative) Group: If a * b ≠ b * a for some elements, the group is non-Abelian.
Example: Matrix multiplication in GL(n, R) (General Linear Group).
Examples of Groups
Integers under Addition: (ℤ, +)
- Closure: a + b ∈ ℤ
- Associativity: (a + b) + c = a + (b + c)
- Identity: 0
- Inverse: For each a, there exists -a
Real Numbers under Multiplication (excluding 0): (ℝ{0}, ×)
- Closure: a × b ∈ ℝ{0}
- Associativity: (a × b) × c = a × (b × c)
- Identity: 1
- Inverse: Each a has an inverse 1/a
Symmetric Group (Sₙ): The set of all permutations of n elements under composition.
Special Types of Groups
- Cyclic Group: Generated by a single element g, i.e., all elements can be written as powers of g.
- Dihedral Group: Represents symmetries of a polygon (rotations and reflections).
- Matrix Groups: Groups like GL(n, R) (General Linear Group) contain invertible n×n matrices under multiplication.
Comments
Post a Comment