Διαφήμιση

Περιστροφή 2D

Νοητική περιστροφή σχήματος κατά μια καθορισμένη γωνία στο επίπεδο.

Μάθηση

Νοητική περιστροφή σχήματος κατά μια καθορισμένη γωνία στο επίπεδο.

2D rotation involves mentally turning a shape around its center by a specified number of degrees. Clockwise rotation moves the shape in the same direction as clock hands; counterclockwise is the opposite. Common rotation angles are 90° (quarter turn), 180° (half turn), and 270° (three-quarter turn). The key skill is tracking how specific features of the shape move during rotation.

new_position = rotate(original_position, angle, center)

  • 90° clockwise: top moves to right, right moves to bottom
  • 180°: shape is upside-down, left-right reversed
  • 270° clockwise = 90° counterclockwise

Πώς να το αναγνωρίζετε

  • Pick a distinctive feature (corner, point, asymmetric part)
  • Track where that feature moves during rotation
  • 90° moves each side one position clockwise
  • Verify multiple features match the expected rotation

Συνηθισμένα λάθη

  • Confusing clockwise with counterclockwise
  • Losing track of the original orientation
  • Not considering that 270° CW = 90° CCW

Λύση βήμα προς βήμα

Ένα βέλος δείχνει προς τα πάνω. Μετά από περιστροφή 90 μοιρών δεξιόστροφα, προς τα πού δείχνει;

  1. Αναγνώριση αρχικού προσανατολισμού: το βέλος δείχνει προς τα πάνω (προς τις 12).
  2. 90 μοίρες δεξιόστροφα σημαίνει τέταρτο στροφής προς τη φορά του ρολογιού.
  3. Η αιχμή μετακινείται από πάνω προς τα δεξιά.
  4. Μετά από 90 μοίρες δεξιόστροφα, το πάνω γίνεται δεξιά.

Απάντηση: Το βέλος δείχνει προς τα δεξιά

Καθοδήγηση εξάσκησης

Χωρική Συλλογιστική

Διαφήμιση