In a similar spirit to this post, I pose the following:
Contextual Problem
A PhD student in Applied Mathematics is defending his dissertation and needs to make 10 gallon keg consisting of vodka and beer to placate his thesis committee. Suppose that all committee members, being stubborn people, refuse to sign his dissertation paperwork until the next day. Since all committee members will be driving home immediately after his defense, he wants to make sure that they all drive home safely. To do so, he must ensure that his mixture doesn't contain too much alcohol in it!
Therefore, his goal is to make a 10 liter mixture of vodka and beer such that the total alcohol content of the mixture is only $12$ percent. Suppose that beer has $8\%$ alcohol while vodka has $40\%$. If $x$ is the volume of beer and $y$ is the volume of vodka needed, then clearly the system of equations is
\begin{equation} x+y=10 \\ 0.08 x +0.4 y = 0.12\times 10 \end{equation}
My Question
The singular value decomposition of the corresponding matrix
\begin{equation} A=\left[ \begin{array}{cc} 1 & 1\\ 0.08 & 0.4 \end{array} \right] \end{equation}
is
$$A=U\Sigma V^T$$
with
\begin{equation} U=\left[ \begin{array}{cc} -0.9711 & -0.2388\\ -0.2388 & 0.9711 \end{array} \right] \end{equation}
\begin{equation} \Sigma=\left[ \begin{array}{cc} 1.4554 & 0\\ 0 & 0.2199 \end{array} \right] \end{equation}
\begin{equation} V=\left[ \begin{array}{cc} -0.6804 &-0.7329\\ -0.7329 & 0.6804 \end{array} \right] \end{equation}
How do I interpret their physical meaning of the singular values and the columns of the two unitary matrices in the context of this particular problem? That is, what insight do these quantities give me about the nature of the problem itself or perturbations thereof?
