Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/Basic Algebra/Basic Algebra.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
- [[Discrete logarithm]]
- [[ECDLP]]
- [[Ideal]]
- [[Abelian Group]]

26 changes: 24 additions & 2 deletions content/Basic Algebra/Group.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ Given a [[Binary Operation]] $*$ : $G \times G \rightarrow G$ on a set $G$, the
2. There exists an identity element $e \in G$.
3. For each element $a \in G$, there exists an inverse element $a^{-1} \in G$.

# Example
### Example

- $GL_{2}(\mathbb{R})$ is the set of all invertible 2×2 matrices, and with matrix multiplication, it forms a group.
- $GL_{2}(\mathbb{R})$ is the set of all invertible 2×2 matrices, and with matrix multiplication, it forms a group.

<br/>

**Note**

- Commutativity: For $ \forall a, b \in G$, $a * b = b * a$
- Associativity: For $ \forall a, b, c \in G$, $(a * b) * c = a * (b * c)$
- Identity: $\exists e \in G$ s.t. $\forall a in G$, $a * e = e * a = a$
- Inverse: For $\forall a \in G$, $\exists a^{-1} \in G$ s.t. $a * a^{-1} = a^{-1} * a = e$

<br/>

# Abelian Group

A group $G$ under $*$ is an abelian group if $*$ is commutative.

### Example

- $(\mathbb{R}, +)$ is an abelian group.
- $(\mathbb{R}^*, \cdot )$ is an abelian group. ($\mathbb{R}^* = \mathbb{R}$ \ ${0}$)
- $(\mathbb{R}, \cdot )$ is **NOT** a group. Because there is no inverse to 0.
- $(\mathbb{N}, +)$ is **NOT** a group. Because there is no identity and inverse.
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.