2

I understand the geometric intuition, but the proof by induction in Trefethen book confuses me : it seems to me that a 1*1 complex matrix has infinitely many left and right singular vector pairs?

The actual statement in the book is :

"If A is square and the singular values are distinct, the left and right singular vectors are uniquely determined up to complex signs (i.e., complex scalar factors of absolute value 1)."

yong
  • 35

2 Answers2

2

If $a$ is a complex number ($a\ne0$ to avoid trivialities), the singular value is $|a|$, so we need to find $u$ and $v$ with $|u|=1$ and $|v|=1$ such that $$ a=u|a|\bar{v} $$ Since $a=|a|w$, for a unique $w$, any pair $(u,v)$ such that $u\bar{v}=w$ will do.

There is no uniqueness of $U$ and $V$ in the singular value decomposition of $A=U\Sigma V^*$, in general, see https://en.wikipedia.org/wiki/Singular_value_decomposition

egreg
  • 238,574
2

What is unique in the SVD are the singular values. The unitary matrices are not unique.

This can be seen as follows: Assume $A=U\Sigma V^*$ is a SVD, and $W$ is a diagonal unitary matrix. Since all diagonal matrices commute, we have $$U\Sigma V^* = U\Sigma WW^*V^* = UW\Sigma W^*V^* = (UW)\Sigma(VW)^*$$ Obviously in the $1\times 1$ case all matrices are diagonal.

celtschk
  • 43,384