Every time I saw a Markov matrix with an Eigen value of -1, it had some 1's on its off-diagonals. The most obvious example is a simple permutation matrix:
$$M = \left(\begin{array}{ccc}0&1\\1&0\end{array}\right)$$
With eigen values 1 and -1. As soon as you subtract $\epsilon$ from the 1's and add them to the 0's, the -1 eigen value decreases in magnitude.
For another example, see the matrix $M$ this answer. Again, an eigen value of -1 with multiple 1's on the off-diagonals.
Is there a way to prove or refute this claim?
All I have so far are examples to support it and haven't been able to come up with a direction for how to prove it.
Why do I care about this result? Because I'm considering Markov matrices formed from coin flips where the coins can never be one-sided. Such matrices might have 1's on their diagonals, but never on the off-diagonals.
If this is true, we can write for such a matrix $M$,
$$vM^n = c_1+c_2\lambda_1^n+\dots$$
Since $\lambda_1$ and other eigen values must be $<1$, we can say as $n \to \infty$,
$$vM^n = c_1$$
Yes, there's a way to refute the claim - a counterexample.
The matrix $\begin{bmatrix}0&0&\frac12&\frac12\\ 0&0&\frac12&\frac12\\ \frac12&\frac12&0&0\\ \frac12&\frac12&0&0\end{bmatrix}$ has $-1$ as an eigenvalue with eigenvector $\begin{bmatrix}1\\1\\-1\\-1\end{bmatrix}$.
Eigenvalues of $-1$ are associated with bipartite graphs; if every step alternates between two subgraphs, there will be an eigenvector for $-1$ weighting everything in one of those subgraphs positive and everything in the other negative. Other roots of unity are associated with directed cycles of longer lengths; they're less likely to come up unless you specifically rig the system to get them, but they're possible.