This particular 6x6 permutation matrix is P
$$ P = \begin{pmatrix} 0 & 0 & 0 & 0 & 0 & 1 \\ 0 & 0 & 1 & 0 & 0 & 0 \\ 1 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 & 0 & 0 \\ 0 & 1 & 0 & 0 & 0 & 0 \\ \end{pmatrix}$$
the least power of $P$ that gives identity is $8$. However, lets consider $P_2$
$$ P_2 = \begin{pmatrix} 0 & 0 & 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 & 0 & 0 \\ 1 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 0 & 0 & 1 \\ 0 & 1 & 0 & 0 & 0 & 0 \end{pmatrix} $$ the least power of $P_2$ that gives identity is $6$.
- How to identify the least power of a permutation matrix for which it turns into identity. 2.If a number is given, say $n$, how to construct a permutation matrix such that the minimum power the matrix has to be raised to get identity is that particular number $n$?
Permutation matrices multiply just like their associated permutations (provided you fix the correspondence so that left and right do not get mixed up). So you are just asking about orders of permutations, which as is well known is computed as the least common multiple of the cycle lengths. In particular a cyclic permutation of length $n$ will dp well for your final question (the associated matrix is also the companion matrix for the monic polynomial $X^n-1$).