e3417bdadbfc503842a193833540682248b02294
[lectures/latex.git] / physics_compact / math_app.tex
1 \chapter{Mathematical tools}
2
3 \section{Vector algebra}
4
5 \subsection{Vector space}
6 \label{math_app:vector_space}
7
8 \begin{definition}[Vector space]
9 A vector space $V$ over a field $(K,+,\cdot)$ is an additive abelian group $(V,+)$ and an additionally defined scalar multiplication of $\vec{v}\in V$ by $\lambda\in K$, which fullfills:
10 \begin{itemize}
11 \item $\forall \vec{v} \, \exists 1$ with: $\vec{v}1=\vec{v}$
12       (identity element of scalar multiplication)
13 \item $\vec{v}(\lambda_1+\lambda_2)=\vec{v}\lambda_1+\vec{v}\lambda_2$
14       (distributivity of scalar multiplication)
15 \item $(\vec{v}_1+\vec{v}_2)\lambda=\vec{v}_1\lambda + \vec{v}_2\lambda$
16       (distributivity of scalar multiplication)
17 \item $(\vec{v}\lambda_1)\lambda_2=\vec{v}(\lambda_1\lambda_2)$
18       (compatibility of scalar multiplication with field multiplication)
19 \end{itemize}
20 The elements $\vec{v}\in V$ are called vectors.
21 \end{definition}
22
23 \begin{remark}
24 Due to the additive abelian group, the following properties are additionally valid:
25 \begin{itemize}
26 \item $\vec{u}+\vec{v}=\vec{v}+\vec{u}$ (commutativity of addition)
27 \item $\vec{u}+(\vec{v}+\vec{w})=(\vec{u}+\vec{v})+\vec{w}$
28       (associativity of addition)
29 \item $\forall \vec{v} \, \exists \vec{0}$ with:
30       $\vec{0}+\vec{v}=\vec{v}+\vec{0}=\vec{v}$
31       (identity elemnt of addition)
32 \item $\forall \vec{v} \, \exists -\vec{v}$ with: $\vec{v}+(-\vec{v})=0$
33       (inverse element of addition)
34 \end{itemize}
35 The addition of two vectors is called vector addition.
36 \end{remark}
37
38 \subsection{Dual space}
39
40 \begin{definition}[Dual space]
41 The dual space $V^{\dagger}$ of vector space $V$ over field $K$ is defined as the set of all linear maps from the vector space $V$ into its field $K$
42 \begin{equation}
43 \varphi:V\rightarrow K \text{ .}
44 \end{equation}
45 These type of linear maps are termed linear functionals.
46 The dual space $V^{\dagger}$ becomes a vector space over $K$ itself by the following additional definitions
47 \begin{eqnarray}
48 (\varphi+\psi)(\vec{v}) & = & \varphi(\vec{v})+\psi(\vec{v}) \\
49 (\lambda\varphi)(\vec{v}) & = & \lambda\varphi(\vec{v})
50 \end{eqnarray}
51 for all $\vec{v}\in V$, $\varphi,\psi\in V^{\dagger}$ and $\lambda\in K$.
52
53 The map $V^{\dagger}\times V \rightarrow K: [\varphi,\vec{v}]=\varphi(\vec{v})$ is termed dual pairing of a functional $\varphi\in V^{\dagger}$ and an elemnt $\vec{v}\in V$.
54 \end{definition}
55
56 \subsection{Inner and outer product}
57 \label{math_app:product}
58
59 \begin{definition}[Inner product]
60 The inner product on a vector space $V$ over $K$ is a map
61 $(\cdot,\cdot):V\times V \rightarrow K$, which satisfies
62 \begin{itemize}
63 \item $(\vec{u},\vec{v})=(\vec{v},\vec{u})^*$
64       (conjugate symmetry, symmetric for $K=\mathbb{R}$)
65 \item $(\lambda\vec{u},\vec{v})=\lambda(\vec{u},\vec{v})$ and
66       $(\vec{u}'+\vec{u}'',\vec{v})=(\vec{u}',\vec{v})+(\vec{u}'',\vec{v})$
67       (linearity in first argument)
68 \item $(\vec{u},\vec{u})\geq 0 \text{, } ``=" \Leftrightarrow \vec{u}=0$
69       (positive definite)
70 \end{itemize}
71 for $\vec{u},\vec{v}\in V$ and $\lambda\in K$.
72 Taking the complex conjugate $(\cdot)^*$ is the map from
73 \begin{equation}
74 z=a+bi\mapsto z^*=a-bi \text{, } z,z^*\in K \text{.}
75 \end{equation}
76 \end{definition}
77
78 \begin{remark}
79 Due to conjugate symmetry, linearity in the first argument results in conjugate linearity (also termed antilinearity) in the second argument.
80 \begin{equation}
81 (\vec{u},\lambda(\vec{v}'+\vec{v}''))=(\lambda(\vec{v}'+\vec{v}''),\vec{u})^*=
82 \lambda^*(\vec{v}',\vec{u})^*+\lambda^*(\vec{v}'',\vec{u})^*=
83 \lambda^*(\vec{u},\vec{v}')+\lambda^*(\vec{u},\vec{v}'')
84 \end{equation}
85 This is called a sesquilinear form.
86 If $K=\mathbb{R}$, conjugate symmetry reduces to symmetry and the sesquilinear form gets a bilinear form.
87
88 Furtermore, the inner product $(\cdot,\cdot)$ provides a mapping
89 \begin{equation}
90 V\rightarrow V^{\dagger}:\vec{v}\mapsto \varphi_{\vec{v}}
91 \quad
92 \text{ defined by }
93 \quad
94 \varphi_{\vec{v}}(\vec{u})=(\vec{v},\vec{u}) \text{ .}
95 \end{equation}
96 Since the inner product is linear in the first argument, the same is true for the defined mapping.
97 \begin{equation}
98 \lambda(\vec{u}+\vec{v}) \mapsto
99 \varphi_{\lambda(\vec{u}+\vec{v})}=
100 \lambda\varphi_{\vec{u}}+\lambda\varphi_{\vec{v}}\\
101 \end{equation}
102 If the inner product is nondegenerate, i.e.\  $\forall\vec{u}\, (\vec{v},\vec{u})=0 \Leftrightarrow \vec{v}=0$, as it applies for the scalar product for instance, the mapping is injective.
103 Since the dimension of $V$ and $V^{\dagger}$ is equal, it is additionally surjective.
104 Then, $V$ is isomorphic to $V^{\dagger}$.
105 Vector $\vec{v}^{\dagger}\equiv \varphi_{\vec{v}}\in V^{\dagger}$ is said to be the dual vector of $\vec{v}\in V$.
106 The dual pairing $[\vec{v}^{\dagger},\vec{u}]=[\varphi_{\vec{v}},\vec{u}]=\varphi_{\vec{v}}(\vec{u})$ is associated with the inner product $(\vec{v},\vec{u})$.
107
108 Now, in physics and matrix algebra, the inner product is often defined with linearity in the second argument and conjugate linearity in the first argument.
109 In this case, the antilinearity property is assigned to element $\varphi_{\vec{v}}=\vec{v}^{\dagger}$ of dual space indicating an isomorphism of $V$ to the conjugate complex of its dual space.
110 \begin{equation}
111 [(\lambda\vec{v})^{\dagger},\vec{u}]=
112 [\varphi_{\lambda\vec{v}},\vec{u}]=
113 \varphi_{\lambda\vec{v}}(\vec{u})=
114 \lambda^*\varphi_{\vec{v}}(\vec{u})=
115 \lambda^*(\vec{v},\vec{u})
116 \end{equation}
117 According to this, in matrix formalism, the dual vector is associated with the conjugate transpose.
118 \begin{equation}
119 (\vec{u},\vec{v}) \rightarrow \vec{u}^{\dagger}\vec{v}
120 \end{equation}
121 \end{remark}
122
123 \begin{definition}[Outer product]
124 If $\vec{u}\in U$, $\vec{v}\in V$ are vectors within the respective vector spaces and $\vec{\varphi}\in V^{\dagger}$  is a linear functional of the dual space $V^{\dagger}$ of $V$,
125 the outer product $\vec{u}\otimes\vec{v}$ is defined as the tensor product of $\vec{\varphi}$ and $\vec{u}$,
126 which constitutes a map $A:V\rightarrow U$ by
127 \begin{equation}
128 \vec{v}\mapsto\vec{\varphi}(\vec{v})\vec{u}
129 \text{ ,}
130 \end{equation}
131 where $\vec{\varphi}(\vec{v})$ denotes the linear functional $\vec{\varphi}\in V^{\dagger}$ on $V$ when evaluated at $\vec{v}\in V$, a scalar that in turn is multiplied with $\vec{u}\in U$.
132
133 In matrix formalism, with respect to a given basis ${\vec{e}_i}$ of $\vec{u}$ and ${\vec{e}'_i}$ of $\vec{v}$,
134 if $\vec{u}=\sum_i^m \vec{e}_iu_i$ and $\vec{v}=\sum_i^n\vec{e}'_iv_i$,
135 the outer product can be written as matrix $A$ as
136 \begin{equation}
137 \vec{u}\otimes\vec{v}=A=\left(
138 \begin{array}{c c c c}
139 u_1v_1^* & u_1v_2^* & \cdots & u_1v_n^*\\
140 u_2v_1^* & u_2v_2^* & \cdots & u_2v_n^*\\
141 \vdots & \vdots & \ddots & \vdots\\
142 u_mv_1^* & u_mv_2^* & \cdots & u_mv_n^*\\
143 \end{array}
144 \right)
145 \text{ .}
146 \end{equation}
147 \end{definition}
148 \begin{remark}
149 The matrix can be equivalently obtained by matrix multiplication:
150 \begin{equation}
151 \vec{u}\otimes\vec{v}=\vec{u}\vec{v}^{\dagger} \text{ ,}
152 \end{equation}
153 if $\vec{u}$ and $\vec{v}$ are represented as $m\times 1$ and $n\times 1$ column vectors, respectively.
154 Here, $\vec{v}^{\dagger}$ represents the conjugate transpose of $\vec{v}$.
155 By definition, and as can be easily seen in the matrix representation, the following identity holds:
156 \begin{equation}
157 (\vec{u}\otimes\vec{v})\vec{w}=\vec{u}(\vec{v},\vec{w})
158 \end{equation}
159 \end{remark}
160
161 \section{Spherical coordinates}
162
163 \section{Fourier integrals}
164