Efficient Solution for (A+pI)x=b: Fast Matrix Inversion

  • Thread starter Thread starter blindconsole
  • Start date Start date
  • Tags Tags
    Inversion Matrix
blindconsole
Messages
5
Reaction score
0
Hello,

I'm trying to find a fast way to solve the matrix equation (A+pI)x=b, where A is a large matrix, I is the identity matrix, and p is a parameter whose value needs to be swept. Obviously I could just use mldivide or matrix inversion for every value of p, but this seems inefficient. Does anyone know of a better way? Thanks!
 
Physics news on Phys.org
Diagonalize the matrix A:
<br /> A \, U = U \, \Lambda<br />
where \Lambda is a diagonal matrix whose diagonal entries are the eigenvalues \lambda_{i} of A and U is a vector whose columns are the eigenvectors of A. Then, we have:
<br /> f(A) = U \, f(\Lambda) \, U^{-1}<br />
where by f(\Lambda) we mean a diagonal matrix whose diagonal entries are f(\lambda_{i}).

Now, notice that if you have A, diagonlaized, then:
<br /> (A + p I) \, U = A \, U + p I \, U = U \, \Lambda + p U \, I = U \, (\Lambda + p I)<br />
where we have used the fact that I U = U I = U. Here, \Lambda + p I is again a diagonal matrix whose eigenvalues are \lambda_{i} + p. Then, we will have:
<br /> (A + p I)^{-1} = U \, \frac{1}{\Lambda + p I} \, U^{-1}<br />
 
##\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