I learned from this lecture that for the PageRank algorithm the following equation holds:
$$r^{i+1}=L r^{i}$$
I thought when the $r$ vector converges $r^{i+1}=r^{i}$, and hence the equation would become this:
$$r=L r$$
which means that $r$ is just the eigenvector of $L$ with eigenvalue one, if I am not wrong, meaning that to calculate the results of PageRank we just need to find the eigenvector of a matrix with its eigenvalue being one. And since $L$ can be any matrix, then I wonder if that implies that any matrix would have an eigenvector with eigenvalue one?
This is true if $L$ is a positive Markov matrix, which is what we assume in PageRank (all values positive, columns sum to 1). See this answer for more a in-depth explanation.