I'm learning about recommender systems and learning about different similarity algorithms. Euclidean distance would change as the scale of the objects being compared changes. In that case, would SVD (Singular Value Decomposition) and Euclidean Distance be incompatible?
Singular Value Decomposition is the multiplication of matrices U*S*V. U and V are orthonormal matrices (which do not alter the scale) but S is scaled diagonally by the eigenvalues.
Please correct me if I've misunderstood something here. Thanks!