The Singular Value Decomposition (SVD) states that for every matrix
where
In matricial notation:
That is
As the vectors in the set
The SVD of the matrix
Given a matrix
And we still have
The Eckart-Young-Mirsky theorem states that for every unitarily invariant norm
This is particularly useful in data science and we shall show how good this approximations are by
compressing an image.
An image is a 2-dimensional array of pixels, each pixel, represented with a square is also an array formed by four numerical
values RGBA, this values represent "how much" Red, Green, Blue and Alpha (alpha is the transparency of the image) there is in
that particular pixel, this values range from
An image can be converted into greyscale by setting the three values of RGB to the average of them in the original image,
that is setting for each pixel the array
Using what we've just learned about the SVD, we know due to the Eckart-Young-Mirsky theorem that the image matrix can be very well aproximated by one of smaller range, making the image lighter. This is what we do in the Image Compression section.