markov chain on state {1, 2, 3, 4, 5, 6 , 7}
what are the probabilities of states 1 , 2 , and 4 in the stationary distribution of the Markov chain s shown in the image. The label to the left of an arrow gives the corresponding transition probability.

This is an discrete finite ergodic Markov Chain so there is a unique stationary distribution $\pi$ with $\sum \pi_i =1$. Here are three approaches:
Looking at the symmetries and shape of your diagram
The transition matrix is $P=\left(\begin{matrix} 0.2 & 0.4 & 0.4 & 0.0 & 0.0 & 0.0 & 0.0 \\ 0.2 & 0.0 & 0.0 & 0.4 & 0.4 & 0.0 & 0.0 \\ 0.2 & 0.0 & 0.0 & 0.0 & 0.0 & 0.4 & 0.4 \\ 0.0 & 0.2 & 0.0 & 0.8 & 0.0 & 0.0 & 0.0 \\ 0.0 & 0.2 & 0.0 & 0.0 & 0.8 & 0.0 & 0.0 \\ 0.0 & 0.0 & 0.2 & 0.0 & 0.0 & 0.8 & 0.0 \\ 0.0 & 0.0 & 0.2 & 0.0 & 0.0 & 0.0 & 0.8 \end{matrix}\right)$
0.04761905 0.09523810 0.09523810 0.1904762 0.1904762 0.1904762 0.1904762close to the exact result while the second row is0.04761905 0.09746764 0.09300855 0.1958588 0.1958588 0.1850936 0.1850936is a little further away and might need a higher value of $n$Consider the left eigenvalues and left eigenvectors of $P$ (your computer system might prefer the eigenvalues and eigenvectors of $P^T$)