summaryrefslogtreecommitdiff
path: root/src/math/matrices.org
blob: c968f8cadfdf5429ad2657fbf40460dc4ccdc323 (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
#+title:Matrix Properties
#+setupfile: ../../math_options.org

* Disclaimer
This site as of now just a technology demonstration and its claims
should not be taken as true (even though I myself am pretty confident
they are)

* Basic properties
\begin{align*}
A + B = B + A
\end{align*}

* Dot product
\begin{align*}
(A^\text{T})^\text{T} &= A\\
(A + B)^\text{T} &= A^\text{T} + B^\text{T}\\
(AB)^\text{T} &= B^\text{T}A^\text{T}
\end{align*}

* Transpose
\begin{align*}
\bm{a} \cdot \bm{b} &= \overline{\bm{b}} \cdot \bm{a}\\
\bm{a} \cdot \bm{b} &= \bm{a}^\text{T} \bm{b}
\end{align*}

* Hermitian transpose
\begin{align*}
A^\ast &= \left[\overline{a_{ij}}\right]\\
(\lambda A)^\ast &= \left[\overline{\lambda a_{ij}}\right] = \overline{\lambda} \left[a_{ij}\right]^\ast = \overline{\lambda}\,\overline{A}\\
A^\dag &= (A^\ast)^\text{T}\\
A^{\dag\dag} &= A
\end{align*}