-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappendices.tex
More file actions
159 lines (135 loc) · 5.12 KB
/
appendices.tex
File metadata and controls
159 lines (135 loc) · 5.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
%% -*- coding:utf-8 -*-
\begin{appendices}
\chapter{Abstract algebra}
\label{sec:abstractalgebra}
\section{Groups}
\begin{definition}[Group]
\label{def:group}
Let us have a set of elements $G$ with a defined binary operation
$\circ$ that satisfies the following properties.
\begin{enumerate}
\item Closure: $\forall a, b \in G$: $a \circ b \in G$
\item Associativity: $\forall a, b, c \in G$:
$a \circ \left( b \circ c \right) =
\left( a \circ b \right) \circ c$
\item Identity element: $\exists e \in G$ such that
$\forall a \in G$: $e \circ a = a \circ e = a$
\item Inverse element: $\forall a \in G$ $\exists a^{-1} \in G$ such that
$a \circ a^{-1} = e$
\end{enumerate}
In this case $\left(G, \circ\right)$ is called a group.
\end{definition}
Therefore the group is a \mynameref{def:monoid} with inverse element
property.
\begin{example}[Group $\mathbb{Z}/2\mathbb{Z}$]
Consider a set of 2 elements: $G = \left\{0, 1\right\}$ with the
operation $\circ$ defined by the table \ref{tab:CayleyZ2Z}.
\begin{table}
\centering
\caption{Cayley table for $\mathbb{Z}/2\mathbb{Z}$}
\label{tab:CayleyZ2Z}
\begin{tabular}{l|ll}
\toprule
$\circ$ & 0 & 1 \\
\midrule
0 & 0 & 1 \\
1 & 1 & 0 \\
\bottomrule
\end{tabular}
\end{table}
The identity element is $0$ i.e. $e = 0$.
Inverse element is the element itself
because $\forall a \in G$: $a \circ a = 0 = e$.
\label{ex:groupZ2}
\end{example}
\begin{definition}[Abelian group]
Let us have a \mynameref{def:group} $\left(G, \circ\right)$.
The group is called an Abelian or commutative if
$\forall a, b \in G$ it holds $a \circ b = b \circ a$.
\label{def:abeliangroup}
\end{definition}
\section{Rings and Fields}
\subsection{Rings}
\begin{definition}[Ring]
Consider a set $R$ with 2 binary operations defined. The first one
$\oplus$ (addition) and the elements of $R$ form an
\mynameref{def:abeliangroup}
under this operation. The second one is $\odot$ (multiplication) and
the elements of $R$ form a \mynameref{def:monoid} under
the operation. The two binary operations are connected to each other
via the following distributive law:
\begin{itemize}
\item Left distributivity:
$\forall a,b,c \in R$:
$a \odot \left(b \oplus c\right) =
a \odot b \oplus a \odot c$
\item Right distributivity:
$\forall a,b,c \in R$:
$\left( a \oplus b \right) \odot c =
a \odot c \oplus b \odot c$
The identity element for $\left(R, \oplus\right)$ is denoted as $0$
(additive identity).
The identity element for $\left(R, \odot\right)$ is denoted as $1$
(multiplicative identity).
The inverse element to $a$ in $\left(R, \oplus\right)$ is denoted as $-a$
\end{itemize}
In this case $\left(R, \oplus, \odot\right)$ is called a ring.
\label{def:ring}
\end{definition}
The \mynameref{def:ring} is a generalization of the concept of integer numbers.
\begin{example}[Ring of integers $\mathbb{Z}$]
The set of integer numbers $\mathbb{Z}$ forms a \mynameref{def:ring}
under $+$ and $\cdot$ operations i.e. addition $\oplus$ is
$+$ and multiplication $\odot$ is $\cdot$. Thus for integer
numbers we have the following \mynameref{def:ring}:
$\left(\mathbb{Z}, +, \cdot\right)$
\label{ex:ring}
\end{example}
\subsection{Fields}
\begin{definition}[Field]
The ring $\left(R, \oplus, \odot\right)$ is called a field if
$\left(R \setminus \{0\}, \odot\right)$ is an \mynameref{def:abeliangroup}.
The inverse element to $a$ in
$\left(R \setminus\{0\}, \odot\right)$ is denoted as $a^{-1}$
\label{def:field}
\end{definition}
\begin{example}[Field $\mathbb{Q}$]
Note that $\mathbb{Z}$ is not a field because an inverse does not exist for every integer
number. But if we consider a set of fractions
$\mathbb{Q} = \left\{a/b \mid a \in \mathbb{Z}, b \in
\mathbb{Z}\setminus\{0\}\right\}$ then it will be a field.
The
inverse element to $a/b$ in
$\left(\mathbb{Q}\setminus\{0\}, \cdot\right)$ will be $b/a$.
\label{ex:field}
\end{example}
\section{Linear algebra}
\begin{definition}[Vector space]
\label{def:vectorspace}
Let $F$ is a \mynameref{def:field}. The set $V$ is called as vector
space under $F$ if the following conditions are satisfied
\begin{enumerate}
\item We have a binary operation $V \times V \rightarrow V$
(addition): $(x,y) \rightarrow x + y$ with the following
properties:
\begin{enumerate}
\item $x + y = y + x$
\item $(x + y) + z = x + ( y + z )$
\item $\exists 0 \in V$ such that $\forall x \in V: x + 0 = x$
\item $\forall x \in V \exists -x \in V$ such that $x + (-x) = x -
x = 0$
\end{enumerate}
\item We have a binary operation $F \times V \rightarrow V$ (scalar
multiplication) with the following properties
\begin{enumerate}
\item $1_F \cdot x = x$
\item $\forall a,b \in F, x \in V$: $a\cdot\left(b \cdot x\right)
= \left(a b\right) \cdot x$.
\item $\forall a,b \in F, x \in V$:
$(a+b)\cdot x = a \cdot x + b \cdot x$
\item $\forall a \in F, x, y \in V$:
$a\cdot(x+y) = a\cdot x + a \cdot y$
\end{enumerate}
\end{enumerate}
\end{definition}
\end{appendices}