Suppose $A$ is a matrix and that we want to apply inverse iteration with a shift of $\mu$.
The inverse iteration method usually involves solving a linear system $(A-\mu I)w=v_{k-1}$ to obtain the $k$-th iterate, $v_k=w/\Vert w \Vert$.
Now, I understand there can be reasons why we can't compute the inverse $B:=(A-\mu I)^{-1}$ directly, but wouldn't we want to precompute $B$ and simply apply the power method on $B$ if possible? (Every source I've come across seems to only mention linear solve, never precomputing the inverse.)
Thanks!