I understand that when I do SVD of a rank 1 matrix constructed as $xx^T=U\Sigma U^T$, where U=$\frac{x}{\Vert{x\Vert}}$. But when I calculate $UU^T$ I do not get the identity matrix. What am I doing wrong, I thought that $UU^T=I$ is a given with SVD?
2026-03-25 16:01:36.1774454496
Singular Value Decomposition of a rank 1 matrix
2.1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in LINEAR-ALGEBRA
- An underdetermined system derived for rotated coordinate system
- How to prove the following equality with matrix norm?
- Alternate basis for a subspace of $\mathcal P_3(\mathbb R)$?
- Why the derivative of $T(\gamma(s))$ is $T$ if this composition is not a linear transformation?
- Why is necessary ask $F$ to be infinite in order to obtain: $ f(v)=0$ for all $ f\in V^* \implies v=0 $
- I don't understand this $\left(\left[T\right]^B_C\right)^{-1}=\left[T^{-1}\right]^C_B$
- Summation in subsets
- $C=AB-BA$. If $CA=AC$, then $C$ is not invertible.
- Basis of span in $R^4$
- Prove if A is regular skew symmetric, I+A is regular (with obstacles)
Related Questions in SVD
- Singular values by QR decomposition
- Are reduced SVD and truncated SVD the same thing?
- Clarification on the SVD of a complex matrix
- Sufficient/necessary condition for submatrix determinant (minor) that decreases with size?
- Intuitive explanation of the singular values
- SVD of matrix plus diagonal matrix and inversed
- Fitting a sum of exponentials using SVD
- Solution to least squares problem
- Are all three matrices in Singular Value Decomposition orthornormal?
- Solving linear system to find weights in $[0,1]$
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
This is something that depends on the convention you are using for your singular value decomposition.
Let $A$ be a $m \times n$ matrix with rank $r$, so that $A$ has $r$ nonzero singular values. One convention for the SVD is to write $A=U \Sigma V^T$ where $\Sigma$ is an $r \times r$ matrix diagonal matrix whose diagonal entries are the nonzero singular values of $A$. In this case $U$ is an $m \times r$ matrix that has orthonormal columns and $V$ is an $n \times r$ matrix with orthonormal columns. Since $U$ has orthonormal columns we have $U^T U=I_r$, as is the case in your SVD. (Similarly $V^T V= I_r$). However, we can't have $U U^T=I_m$, unless $r=m$. As a side note, if $r=m$ then we necessarily do have $U U^T=I_m$. The reason we can't have $U U^T=I_m$ if $r \neq m$ is, if $r \neq m$ then we must have $r < m$. Since $U$ has orthonormal columns, the row rank of $U^T$ is $r$. Therefore, the rank of $U^T$, hence of $U U^T$ is $r$.
A second convention for the SVD is to write $A= \hat{U} \hat{\Sigma} \hat{V}^T$ where $\hat{U}$ is $m \times m$ and $\hat{\Sigma}$ is $m \times n$ and $\hat{V}$ is $n \times n$. In this case the $\hat{\Sigma}$ is still a diagonal matrix, but now we include the zero singular values (counting multiplicity) on the diagaonal of $\hat{\Sigma}$. Our matrix $\hat{U}$ still has orthonormal columns, so we still have $\hat{U}^T \hat{U}=I_m$. However, since $\hat{U}$ is now square, $\hat{U}^T \hat{U}=I_m$ implies that $\hat{U}^T$ is the inverse of $\hat{U}$. That is, $\hat{U}$ is an orthogonal matrix, hence $\hat{U} \hat{U}^T=I_m$.
One can check that if the singular values are arranged in decreasing order on the diagonal in both cases, then (ignoring some minor uniquness issues which occur with repeated singular values) we have $$ \hat{U}=(U \ \ N) $$ where $U$ is the matrix from the first case, and the columns of $N$ form an orthonormal basis for the orthogonal complement of the range of $A$.
The short version is that you haven't done anything wrong. You have just slightly confused properties of two different conventions for the SVD.