Ask Your Question
1

rubik clockwise turn

asked 2018-11-19 10:25:20 +0200

mchericoni gravatar image

updated 2018-11-20 18:41:35 +0200

The 2D map of the Rubik’s cube after the F move shows the F face rotated anticlockwise. Shouldn't it be a clockwise turn?

sage: rubik = CubeGroup()
sage: print(rubik.repr2d("F"))

                 +--------------+
                 |  1    2    3 |
                 |  4   top   5 |
                 | 25   28   30 |
    +------------+--------------+-------------+------------+
    |  9  10   8 | 19   21   24 | 43   26  27 | 33  34  35 |
    | 12 left  7 | 18  front 23 | 42 right 29 | 36 rear 37 |
    | 14  15   6 | 17   20   22 | 41   31  32 | 38  39  40 |
    +------------+--------------+-------------+------------+
                 | 11   13   16 |
                 | 44 bottom 45 |
                 | 46   47   48 |
                 +--------------+
edit retag flag offensive close merge delete

Comments

The question is easier to study if you provide a complete set of commands that allow others to reproduce your problem from a fresh Sage session.

Please edit your question to provide that.

slelievre gravatar imageslelievre ( 2018-11-20 06:43:22 +0200 )edit

I edited the question and added the commands to reproduce the issue.

mchericoni gravatar imagemchericoni ( 2018-11-20 18:43:57 +0200 )edit

2 Answers

Sort by » oldest newest most voted
0

answered 2022-05-18 12:41:41 +0200

The encoding of the moves seems to me indeed inconsistent.

If you apply the following move:

C = RubiksCube().move("U*R")    
C.solve()
'U*R'

The calculated solution by the internal solver 'U*R' is actually the solution for the inverse sequence 'R^-1 * U^-1'.

If I plot the Cube C it gives:

             +--------------+
             | 38   36   33 |
             |  2   top   7 |
             |  1    4    6 |
+------------+--------------+-------------+------------+
| 48  34  35 |  9   10   11 | 17   18   3 | 27  29  32 |
| 12 left 13 | 20  front  5 | 26 right 31 | 45 rear 37 |
| 14  15  16 | 22   23    8 | 25   28  30 | 43  39  40 |
+------------+--------------+-------------+------------+
             | 41   42   19 |
             | 44 bottom 21 |
             | 46   47   24 |
             +--------------+

That's the output one would expect for the sequence 'R^-1 * U^-1', not the sequence 'U*R' applied to the cube.

But if I use the C.show() command, it's displayed in the correct way. The same for the 3D option with C.show3D(). (Sorry, can't add the pictures, not allowed to upload something.)

edit flag offensive delete link more
0

answered 2018-11-20 21:02:58 +0200

nbruin gravatar image

All the moves are encoded as counterclockwise by the looks of it. However, if you are imagining that the cube in unfolded in such a way that you're looking at the inside of the cube, you can interpret the moves as clockwise.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2018-11-19 10:25:20 +0200

Seen: 459 times

Last updated: Nov 20 '18