mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-10 06:51:13 +00:00
Website snapshot
This commit is contained in:
parent
ee0ab66d73
commit
50ec3688a5
281 changed files with 21066 additions and 0 deletions
38
content/blog/groupssimplified.md
Normal file
38
content/blog/groupssimplified.md
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
title: "Groups Simplified"
|
||||
date: 2019-12-10T21:40:00-05:00
|
||||
draft: false
|
||||
images: []
|
||||
---
|
||||
|
||||
This post is inspired by the book "Term Rewriting & All That" by Franz Baader and Tobias Nipkow.
|
||||
|
||||
Let us have a set $G$ together with a binary operation $*$. We will use multiplicative notation throughout meaning $ab = a * b$. Let $x, y, z \in G$. If $\langle G , * \rangle$ has the following properties:
|
||||
|
||||
1. $(x y)z = x (y z)$
|
||||
2. $ex = x$
|
||||
3. $x^{-1} x = e$
|
||||
|
||||
for some fixed $e \in G$, then we say that $\langle G, * \rangle$ is a group. In class, we needed to show that $xe = x$ and $xx^{-1} = e$. However, these can be derived by the prior properties.
|
||||
|
||||
### Prove $xx^{-1} = e$
|
||||
\begin{align*}
|
||||
e &= (xx^{-1})^{-1}(x x^{-1}) \\\\
|
||||
&= (xx^{-1})^{-1} (x (ex^{-1})) \\\\
|
||||
&= (xx^{-1})^{-1} (x ((x^{-1} x) x^{-1})) \text{ ----- (A)} \\\\
|
||||
&= (x x^{-1})^{-1} (x (x^{-1} x)x^{-1}) \\\\
|
||||
&= (x x^{-1})^{-1}((x x^{-1})xx^{-1}) \\\\
|
||||
&= (x x^{-1})^{-1} ((xx^{-1}) (x x^{-1})) \\\\
|
||||
&= ((x x^{-1})^{-1}(x x^{-1})) (x x^{-1}) \\\\
|
||||
&= e(xx^{-1}) \\\\
|
||||
&= xx^{-1}
|
||||
\end{align*}
|
||||
### Prove $xe = x$
|
||||
|
||||
Once we showed $xx^{-1} = e$, the proof of $xe = e$ is simple.
|
||||
\begin{align*}
|
||||
x &= ex \\\\
|
||||
&= (xx^{-1})x \\\\
|
||||
&= x(x^{-1}x) \\\\
|
||||
&= xe
|
||||
\end{align*}
|
Loading…
Add table
Add a link
Reference in a new issue