How Does Tikhonov Regularization Handle Underflows in IEEE Double Precision?

  • Thread starter Thread starter vibe3
  • Start date Start date
  • Tags Tags
    Regularization
vibe3
Messages
39
Reaction score
1
The least-squares solution of A x = b using Tikhonov regularization with a matrix \mu^2 I has the solution:

<br /> x = \sum_i \left( \frac{\sigma_i^2}{\sigma_i^2 + \mu^2} \right) \left( \frac{u_i^T b}{\sigma_i} \right) v_i<br />

where A = U S V^T is the SVD of A and u_i,v_i are the columns of U,V.

For ill-conditioned matrices, the singular values \sigma_i could be tiny leading to problems in computing the quantity \left( \frac{\sigma_i^2}{\sigma_i^2 + \mu^2} \right) since \sigma_i^2 could underflow.

Does anyone know how to compute this solution safely and efficiently in IEEE double precision?
 
Physics news on Phys.org
If ##\sigma_i^2 \ll \mu^2##, then the corresponding term of the sum is approximately
$$\frac{\sigma_i}{\mu^2} (u_i^T b) v_i$$

But in practice you are unlikely to have a problem, because the ratio of ##\sigma_\min / \sigma_\max## will be limited by the numerical precision of the matrix ##A##, and unless ##A## has some pathological properties ##\sigma_\min / \sigma_\max## is unlikely to be less than about ##10^{-16}##.

If all the SVs and ##\mu## are very small (e.g. less than ##10^{-100}##) so underflows are likely to affect everything, the best fix would be to rescale the original problem to make them of order 1.
 
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
When decomposing a representation ##\rho## of a finite group ##G## into irreducible representations, we can find the number of times the representation contains a particular irrep ##\rho_0## through the character inner product $$ \langle \chi, \chi_0\rangle = \frac{1}{|G|} \sum_{g\in G} \chi(g) \chi_0(g)^*$$ where ##\chi## and ##\chi_0## are the characters of ##\rho## and ##\rho_0##, respectively. Since all group elements in the same conjugacy class have the same characters, this may be...
Back
Top