You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lectures/svd_intro.md
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ $U_{ij}^T$ is the complex conjugate of $U_{ji}$.
111
111
112
112
The matrices $U,\Sigma,V$ entail linear transformations that reshape in vectors in the following ways:
113
113
114
-
* multiplying vectors by the unitary matrices $U$ and $V$ **rotate** them, but leave **angles between vectors** and **lengths of vectors** unchanged.
114
+
* multiplying vectors by the unitary matrices $U$ and $V$ **rotates** them, but leaves **angles between vectors** and **lengths of vectors** unchanged.
115
115
* multiplying vectors by the diagonal matrix $\Sigma$ leaves **angles between vectors** unchanged but **rescales** vectors.
116
116
117
117
Thus, representation {eq}`eq:SVD101` asserts that multiplying an $n \times 1$ vector $y$ by the $m \times n$ matrix $X$
@@ -122,7 +122,25 @@ amounts to performing the following three multiplcations of $y$ sequentially:
122
122
* **rotating** $\Sigma V^T y$ by multiplying it by $U$
123
123
124
124
This structure of the $m \times n$ matrix $X$ opens the door to constructing systems
125
-
of data **encoders** and **decoders**, an idea that we shall apply later in this lecture.
125
+
of data **encoders** and **decoders**.
126
+
127
+
Thus,
128
+
129
+
* $V^T y$ is an encoder
130
+
* $\Sigma$ is an operator to be applied to the encoded data
131
+
* $U$ is a decoder to be applied to the output from applying operator $\Sigma$ to the encoded data
132
+
133
+
We'll apply this circle of ideas later in this lecture when we study Dynamic Mode Decomposition.
134
+
135
+
Three popular **matrix norms** of an $m \times n$ matrix $X$ can be expressed in terms of the singular values of $X$
136
+
137
+
* the **spectral** or $l^2$ norm $|| X ||_2 = \max_{y \in \textbf{R}^n} \frac{||X y ||}{||y||} = \sigma_1$
0 commit comments