Let $C$ denote the set of colorings of an 8x8 chessboard, where each square is colored either black or white. Let $\sim$ denote the equivalence relation on $C$ defined as follows:
two colorings are equivalent if and only if one of them can be obtained from the other by a rotation of the chessboard. What is the cardinality of the set $C/\sim$ of the equivalence classes of elements of $C $ under $\sim$ ?
METHOD 1(A TIRESOME PROCESS)
Let us start with boards having lesser number of squares:
- If the board is 1x1 then we don't have to think, the answer is simply 1
- Let us consider a 2x2 board (say) $$A=\begin{pmatrix}*&*\\ * &*\end{pmatrix}$$ there are a total of $2^4=16$ ways to color the 4 squares in our board A.
I will list down the ways in which we can color the square such that on rotation of kind $0^0,90^0,180^0,and\ 270^0$ counterclockwise we get an equivalent coloring configuration.
Before that there are a few Notations I'll use
- I'll use '$' to represent Black colored squares, and
- '*' to represent White colored squares
Category 1
$$\begin{pmatrix}*&*\\*&*\end{pmatrix}$$ there is only one such coloring and it can be obtained through any type of rotation
Category 2
$$\begin{pmatrix}$&$\\$&$\end{pmatrix}$$ similar to catagory 1 there is only one such coloring and it can be obtained through any type of rotation
Category 3
$$\begin{pmatrix}$&*\\*&*\end{pmatrix}$$ there are 4 such coloring (one black 3 white) which can be obtained from the given configuration by rotation.
Category 4
$$\begin{pmatrix}*&$\\$&$\end{pmatrix}$$ there are 4 such coloring (one white 3 black) which can be obtained from the given configuration by rotation.
Category 5
$$\begin{pmatrix}*&$\\$&*\end{pmatrix}$$ and $$\begin{pmatrix}$&*\\*&$\end{pmatrix}$$
they are two rotations of each other with coloring(2 black and 2 white diagonal).
Category 6
$$\begin{pmatrix}*&*\\$&$\end{pmatrix}$$ there are 4 such colorings (2 black 2 white parallelly) which again can be obtained from rotation.
Observe: No coloring category(i) can be obtained by rotating category(j) configuration ($i\neq j$)
Each Category is an equivalence class as defined in question
METHOD 2(BURNSIDE'S LEMMA): on 2x2 chessboard
BURNSIDE'S LEMMA:G be a finite group of permutations on a set S, then the number of orbits of elements of S under G is $$\frac{\sum_{\phi \in G}|fix\phi|}{|G|}$$
Applying this lemma to Category 1,2,3,4 we obtain that the number of such distinct colorings(rotation allowed) is merely 1 for each case.
For Category 5 and 6 together (i.e. coloring 2 of the squares black and two white) the following table justifies my answer \begin{array} {|r|r|}\hline elements\ of\ Z_4 & numbers\ of\ colorings\ that\ are\ fixed\ \\ \hline identity=0^0 & 6 \\ \hline 90^0 or\ 270^0 & 0 \\ \hline 180^0 & 2 \\ \hline \end{array}
hence, number of distinct colorings(rotation allowed) of a 2x2 chessboard when two squares are colored black and two white is $\frac{6+2.0+2}{4}=2$
So, in all there are 1+1+1+1+2=6 equivalence classes of the set C(set of colorings of 2x2 chessboard) under $\sim$
I understand that the process I'm using in Method 1 is tiring and time consuming. I got the hint from the comments that we can use Burnside's Lemma to do the problem, so I used it on 2x2 chessboard in Method 2, but how to determine the Set of Colorings of the huge 8x8 chessboard on which I will have to act the group $Z_4$ ?