Μετάβαση στο περιεχόμενο
Αρχάριος 5 min Κάρτα αναφοράς

Οδηγός Συμβολισμού Κύβου Ρούμπικ

Μάθετε τη γλώσσα του κύβου. Κατανοήστε τι σημαίνουν τα R, U, L, D, F και B.

Για να διαβάζετε αλγορίθμους και να λύνετε τον κύβο, πρέπει να κατανοήσετε τον τυπικό συμβολισμό. Κάθε γράμμα αναφέρεται σε μια έδρα του κύβου και στο πώς να την περιστρέψετε.

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' αριστερόστροφα
R2 180°
L
Περιστρέψτε την Αριστερή έδρα δεξιόστροφα.
L' αριστερόστροφα
L2 180°
U
Περιστρέψτε την Πάνω έδρα δεξιόστροφα.
U' αριστερόστροφα
U2 180°
D
Περιστρέψτε την Κάτω έδρα δεξιόστροφα.
D' αριστερόστροφα
D2 180°
F
Περιστρέψτε την Μπροστινή έδρα δεξιόστροφα.
F' αριστερόστροφα
F2 180°
B
Περιστρέψτε την Πίσω έδρα δεξιόστροφα.
B' αριστερόστροφα
B2 180°

Τροποποιητές

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.

  1. R — no symbol, so turn the right layer 90° clockwise.
  2. U — no symbol, turn the up layer clockwise.
  3. R' — the prime means turn the right layer 90° counter-clockwise.
  4. U — up layer clockwise again.
  5. R — right layer clockwise.
  6. U2 — the 2 means a 180° turn of the up layer.
  7. 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.

UF edge — touches 2 faces (order doesn't matter)
URF corner — 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.