لقراءة الخوارزميات وحل المكعب، عليك فهم الترميز القياسي. كل حرف يشير إلى وجه من المكعب وكيفية تدويره.
Hold the cube the same way every time
Before any letter means anything, agree on how you are holding the cube. Pick up the cube with one colour on top (this becomes U, Up) and one colour facing you (this becomes F, Front). The other four faces fall into place: the face on your right is R, on your left L, away from you B (Back), and underneath D (Down). Hold it like this and the six letters never change meaning, no matter how scrambled the cube is.
The standard view: U on top, F toward you, R on your right. Every algorithm assumes you are holding the cube this way.
الحركات الأساسية
الحرف بمفرده يعني تدويراً بزاوية 90 درجة باتجاه عقارب الساعة. الحرف متبوعاً بفاصلة عليا (مثل R') يعني تدويراً بزاوية 90 درجة عكس عقارب الساعة. الحرف متبوعاً بـ '2' (مثل R2) يعني تدويراً بزاوية 180 درجة.
R
أدر الوجه الأيمن باتجاه عقارب الساعة.
R'عكس عقارب الساعة
R2180°
L
أدر الوجه الأيسر باتجاه عقارب الساعة.
L'عكس عقارب الساعة
L2180°
U
أدر الوجه العلوي باتجاه عقارب الساعة.
U'عكس عقارب الساعة
U2180°
D
أدر الوجه السفلي باتجاه عقارب الساعة.
D'عكس عقارب الساعة
D2180°
F
أدر الوجه الأمامي باتجاه عقارب الساعة.
F'عكس عقارب الساعة
F2180°
B
أدر الوجه الخلفي باتجاه عقارب الساعة.
B'عكس عقارب الساعة
B2180°
المُعدِّلات
R
بدون مُعدِّل
90 درجة باتجاه عقارب الساعة
R'
عكس عقارب الساعة (فاصلة عليا) — مثل R'
90 درجة عكس عقارب الساعة
R2
تدوير 180 درجة — مثل R2
180 درجة (أي اتجاه)
A single R turn, looping. Watch the top-right edge swing away from you — that is clockwise.
Read a real algorithm
Reading an algorithm is just two questions, one move at a time: which layer (the letter) and how does it turn (the symbol). Nothing more. Let's decode the most famous beginner trigger on the cube — the Sune, named by Swedish speedcuber Lars Petrus. It twists three corners and reads like this:
Watch it run, then read the seven tokens left to right against the list.
R — no symbol, so turn the right layer 90° clockwise.
U — no symbol, turn the up layer clockwise.
R' — the prime means turn the right layer 90° counter-clockwise.
U — up layer clockwise again.
R — right layer clockwise.
U2 — the 2 means a 180° turn of the up layer.
R' — right layer counter-clockwise to finish.
Naming pieces and slots
The same six letters name the pieces too, by listing the faces a piece touches. An edge touches two faces (the edge between U and F is UF); a corner touches three (the corner of U, R and F is URF). For a piece, order doesn't matter — FR and RF are the same edge. But corner names are read clockwise, so URF, RFU and FUR all name the same corner. When you need to talk about a single sticker, the first letter is the face you are looking at: the U-sticker of that corner leads with U.
UFedge — touches 2 faces (order doesn't matter)
URFcorner — touches 3 faces, read clockwise
الحركات العريضة
الحرف الصغير أو لاحقة 'w' تعني تحريك ذلك الوجه مع الطبقة الداخلية المجاورة معاً.
Rwالوجه الأيمن + الطبقة الوسطى (مثل r).
Uwالوجه العلوي + الطبقة الثانية (مثل u).
حركات الشرائح
طبقات داخلية مفردة، دون لمس أي وجه خارجي.
Mالطبقة الوسطى، بنفس اتجاه L.
Eالطبقة الاستوائية، بنفس اتجاه D.
Sالطبقة القائمة، بنفس اتجاه F.
تدويرات المكعب
أدر المكعب بالكامل دون تدوير أي وجه.
xأدر المكعب بالكامل على محور R (مثل حركة R).
yأدر المكعب بالكامل على محور U (مثل حركة U).
zأدر المكعب بالكامل على محور F (مثل حركة F).
The three notation mix-ups everyone hits
M “looks backwards.” The middle slice M follows the L face, not R — so an M turn goes the opposite way to what you'd expect from R. Judge slice direction by the left face.
Lowercase isn't a secret move. On a 3×3, u and Uw are the same thing (a wide turn). It only changes meaning on bigger cubes.
A double turn has no “wrong” direction.R2 and R2' end in the same state; the prime only tells your hands which way to spin.