90-Degree Counterclockwise Rotation- Transformation Guide

What Is 90-Degree Counterclockwise Rotation?

90-degree counterclockwise rotation moves a point around the origin by exactly 90 degrees in the direction opposite to a clock's hands. That's it. No magic, no complexity.

In geometry, this transformation swaps your x and y coordinates and makes the new x-coordinate negative. The rule is simple: (x, y) becomes (-y, x).

Most students encounter this in algebra, computer graphics, or engineering courses. If you're here, you probably need to understand it for an exam or an actual project. Let's get you there.

The Mathematical Rule

For any point (x, y) on a coordinate plane:

(x, y) → (-y, x)

This works every time. Memorize it or derive it from the rotation matrix. The matrix approach gives you the same result:

[cos(90°) -sin(90°)] [x] [0 -1] [x] [-y]
[sin(90°) cos(90°)] × [y] = [1 0] × [y] = [ x]

cos(90°) = 0 and sin(90°) = 1. Multiply it out and you get (-y, x). The matrix method is overkill for simple problems, but it shows why the rule exists.

How to Rotate a Point Step by Step

Here's how you actually do it:

  1. Identify your original point (x, y)
  2. Take the y-coordinate and make it negative: -y
  3. Use the original x as your new y-coordinate: x
  4. Write your answer as (-y, x)

That's the entire process. No guessing, no trial and error.

Example 1: Rotating (3, 4)

Original point: (3, 4)
Apply the rule: (-y, x)
New point: (-4, 3)

Example 2: Rotating (-2, 5)

Original point: (-2, 5)
Apply the rule: (-y, x)
New point: (-5, -2)

Example 3: Rotating (0, 6)

Original point: (0, 6)
Apply the rule: (-y, x)
New point: (-6, 0)

Rotation vs. Other Transformations

You need to know the difference between counterclockwise and clockwise rotation. They give opposite results.

TransformationRuleExample: (3, 4) becomes
90° Counterclockwise(x, y) → (-y, x)(-4, 3)
90° Clockwise(x, y) → (y, -x)(4, -3)
180° Rotation(x, y) → (-x, -y)(-3, -4)
270° Counterclockwise(x, y) → (y, -x)(4, -3)

Notice that 90° clockwise equals 270° counterclockwise. They're the same transformation, just described differently.

Rotating Shapes, Not Just Points

When rotating a shape, rotate every vertex using the same rule. Then reconnect the points in the correct order.

Take a triangle with vertices at A(1, 1), B(4, 1), C(4, 3). Rotate counterclockwise:

Connect A', B', C' to get your rotated triangle. The shape stays the same size and orientation relative to the origin. Only its position changes.

Where This Actually Matters

You might think this is just textbook math. It's not. Counterclockwise rotation shows up in real applications:

If you're working with coordinates in any technical field, you'll encounter this. The math doesn't care if you find it intuitive.

Common Mistakes That Cost Points

Students consistently make these errors:

If you rotate around a different point, translate the shape to the origin first, rotate, then translate back.

Quick Reference: 90° Counterclockwise Rotation

Keep this handy:

How to Rotate Around a Point Other Than the Origin

The origin rule doesn't apply directly if you're rotating around a different point. Here's what you do:

  1. Subtract the rotation center coordinates from your point
  2. Apply the 90° counterclockwise rule to the adjusted coordinates
  3. Add the rotation center coordinates back

Example: Rotate (5, 7) around point (2, 3)

Your answer is (-2, 6).

Bottom Line

90-degree counterclockwise rotation is a simple coordinate swap with a negation. The rule (x, y) → (-y, x) handles every case when rotating around the origin. For other points, translate first. Memorize the rule, apply it consistently, and verify your signs.