So suppose I have a Rubik's, but I can only rotate the faces Top, Left and Front. How many configurations are there in this cube?
In a normal cube, the 'face' (i.e. center) tiles are always fixed. In my particular cube, on top of that, three edges and one corner are fixed (i.e. the corner opposed to the movable faces and it's three adjacent edges).
In a regular cube, we know that
- I can reach all permutations of the 8 corners.
- I can rotate independently 7 of the corners.
- I can reach all EVEN permutations of the 12 edges.
- I can rotate independently 11 of the edges.
So, for a normal cube, the number of permutations that keep a given corner and its adjacent edges fixed is:
$$ N_1 = 7! \times 3^6 \times \frac{9!}{2} \times 2^8 $$
I think the situation with our special cube is similar. With the limited number of moves, I have four hypothesis:
- I can reach all permutations of the 7 movable corners.
- I can rotate independently 6 of the movable corners.
- I can reach all EVEN permutations of the 9 movable edges.
- I can rotate independently 8 of the movable edges.
If the hypothesis are correct, the number of permutations for my special cube is also:
$$ N_2 = 7! \times 3^6 \times \frac{9!}{2} \times 2^8 $$
But I'm not sure. The two cases are not trivially equivalent, and I can't show that with the limited moves, I still get all that freedom that I want.
So, how many permutations cen I get?
A mindless way of getting the answer is to ask GAP, by adapting the example in the manual (https://www.gap-system.org/Doc/Examples/rubik.html):
So the number of elements in the subgroup generated by the moves U, L and F is $$ 2^{18} 3^{12} 5^2 7^2 = 170659735142400 , $$ which agrees with your proposed number $N_2$.