blob: ac00a337be7a68658c8b355a1fc13aa7dbdf3fa1 (
plain)
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
|
\section{Vektoroperationen\label{clifford:section:Vektoroperationen}}
\rhead{Vektoroperationen}
\subsection{Vektordarstellung\label{clifford:section:Vektordarstellung}}
Vektoren können neben der üblichen Spaltendarstellung, auch als Linearkombination aus Basisvektoren
\begin{equation}
\begin{split}
\textbf{a}
&=
\begin{pmatrix}
a_1 \\ a_2 \\ \vdots \\ a_n
\end{pmatrix}
=
a_1 \begin{pmatrix}
1 \\ 0 \\ \vdots \\ 0
\end{pmatrix}
+
a_2\begin{pmatrix}
0 \\ 1 \\ \vdots \\ 0
\end{pmatrix} + \dots
+
a_n\begin{pmatrix}
0 \\ 0 \\ \vdots \\ 1
\end{pmatrix} \\\
&=
a_1\textbf{e}_1
+
a_2\textbf{e}_2
+
\dots + a_n\textbf{e}_n
=
\sum_{i=1}^{n} a_i \textbf{e}_i
\qquad
a_i \in \mathbb{R}
, \textbf{e}_i \in \mathbb{R}^n
\end{split}
\end{equation}
dargestellt werden.
Diese Basisvektoren werden so gewählt, dass sie orthonormal sind.
Um die Darstellung zu vereinfachen werden sie durch $\textbf{e}_1 , \textbf{e}_2, \dots$ ersetzt.
\begin{beispiel}
Eine Linearkombination von Basisvektoren in $\mathbb{R}^4$ könnte wie folgt aussehen
\begin{equation}
\begin{pmatrix}
42 \\ 2 \\ 1291 \\ 4
\end{pmatrix}
=
42 \begin{pmatrix}
1 \\ 0 \\ 0 \\ 0
\end{pmatrix}
+
2 \begin{pmatrix}
0 \\ 1 \\ 0 \\ 0
\end{pmatrix}
+
1291
\begin{pmatrix}
0 \\ 0 \\ 1 \\ 0
\end{pmatrix}
+
4 \begin{pmatrix}
0 \\ 0 \\ 0 \\ 1
\end{pmatrix}
=
42\textbf{e}_1
+
2\textbf{e}_2
+
1291\textbf{e}_3
+
4\textbf{e}_4.
\end{equation}
Dieses Beispiel ist für einen vier dimensionalen Vektor, dies kann selbstverständlich für beliebig viele Dimensionen nach demselben Schema erweitert werden.
\end{beispiel}
|