Skip to content

Commit d95082f

Browse files
authored
docs/group.md (#80)
* docs/group.md * docs/group.md * docs/group.md * docs/group.md
1 parent 727dc61 commit d95082f

3 files changed

Lines changed: 26 additions & 3 deletions

File tree

content/Basic Algebra/Basic Algebra.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
- [[Discrete logarithm]]
2525
- [[ECDLP]]
2626
- [[Ideal]]
27-
- [[Abelian Group]]
27+

content/Basic Algebra/Group.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,28 @@ Given a [[Binary Operation]] $*$ : $G \times G \rightarrow G$ on a set $G$, the
66
2. There exists an identity element $e \in G$.
77
3. For each element $a \in G$, there exists an inverse element $a^{-1} \in G$.
88

9-
# Example
9+
### Example
1010

11-
- $GL_{2}(\mathbb{R})$ is the set of all invertible 2×2 matrices, and with matrix multiplication, it forms a group.
11+
- $GL_{2}(\mathbb{R})$ is the set of all invertible 2×2 matrices, and with matrix multiplication, it forms a group.
12+
13+
<br/>
14+
15+
**Note**
16+
17+
- Commutativity: For $ \forall a, b \in G$, $a * b = b * a$
18+
- Associativity: For $ \forall a, b, c \in G$, $(a * b) * c = a * (b * c)$
19+
- Identity: $\exists e \in G$ s.t. $\forall a in G$, $a * e = e * a = a$
20+
- Inverse: For $\forall a \in G$, $\exists a^{-1} \in G$ s.t. $a * a^{-1} = a^{-1} * a = e$
21+
22+
<br/>
23+
24+
# Abelian Group
25+
26+
A group $G$ under $*$ is an abelian group if $*$ is commutative.
27+
28+
### Example
29+
30+
- $(\mathbb{R}, +)$ is an abelian group.
31+
- $(\mathbb{R}^*, \cdot )$ is an abelian group. ($\mathbb{R}^* = \mathbb{R}$ \ ${0}$)
32+
- $(\mathbb{R}, \cdot )$ is **NOT** a group. Because there is no inverse to 0.
33+
- $(\mathbb{N}, +)$ is **NOT** a group. Because there is no identity and inverse.

package-lock.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)