Transforms that Preserve The Dominant Eigenvector?

  • Context: Graduate 
  • Thread starter Thread starter csguy
  • Start date Start date
  • Tags Tags
    Eigenvector
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
csguy
Messages
2
Reaction score
0
Hi,

I'm working with stochastic matrices (square matrices where each entry is a probability of moving to a different state in a Markov chain) and I am looking for transforms that would preserve the dominant eigenvector (the "stationary distribution" of the chain). What I want to do is to cause the antidiagonal of the matrix to be zero.

I remember studying a host of methods that would preserve the spectrum (e.g. QR method, Jacobi rotation, Householder matrices, etc.), but which methods preserve the dominant eigenvector?

Any suggestions?
 
Physics news on Phys.org
Supposing [itex]A \textbf{v} = \lambda \textbf{v}[/itex], where [itex]\textbf{v}, \lambda[/itex] is the dominant eigenvector/eigenvalue pair with components [itex]v_1, v_2, ..., v_n[/itex]. Then you could do something like
[tex]B = \lambda \left[\begin{matrix} 1 & 0 & 0 & ... & 0 \\ \frac{v_2}{v_1} & 0 & 0 & ... & 0<br /> \\ \frac{v_3}{v_1} & 0 & 0 & ... & 0 \\ \vdots & \vdots & \vdots & \ddots & 0 \\ \frac{v_{n-1}}{v_1} & 0 & 0 & ... & 0 \\ 0 & \frac{v_n}{v_2} & 0 & ... & 0 \end{matrix}\right][/tex]

I think [itex]B \textbf{v} = \lambda \textbf{v}[/itex] if you work out the multiplication.