Source codeVideos

Command Palette

Search for a command to run...

Understanding Rotation

Rotation is a geometric transformation that turns every point of an object around a specific center point by a certain angle. This transformation preserves the congruence (shape and size) of the object, but its orientation can change.

Key aspects of rotation:

  • Center of Rotation (C): The fixed point around which the rotation occurs.
  • Angle of Rotation (θ\theta): The amount of turn. If the angle is positive, the rotation is counter-clockwise. If the angle is negative, the rotation is clockwise.

Definition of Rotation

Given a center point CC and a directed angle θ\theta. Rotation with center CC by an angle θ\theta, denoted by ρC,θ\rho_{C,\theta} or R(C,θ)R(C,\theta), is defined as a transformation that maps:

  1. Point CC to itself (C=CC'=C).
  2. Any point PP to a point PP' such that CP=CPCP = CP' (the distance from the center to the point is equal to the distance from the center to the image) and the angle formed by ray CP\vec{CP} and ray CP\vec{CP'} is θ\theta.

Rotation about the Origin

A common special case is rotation about the origin O(0,0)O(0,0).

If a point P(x,y)P(x,y) is rotated about the origin O(0,0)O(0,0) by an angle θ\theta, its image coordinates P(x,y)P'(x',y') can be calculated using the following formulas:

x=xcosθysinθx' = x \cos \theta - y \sin \theta
y=xsinθ+ycosθy' = x \sin \theta + y \cos \theta

Rotating a Point by 90°

A point B(0,4)B(0,4) is rotated about the origin (0,0)(0,0) by 9090^\circ. Determine its image.

Here, x=0x=0, y=4y=4, and θ=90\theta = 90^\circ.

We know cos90=0\cos 90^\circ = 0 and sin90=1\sin 90^\circ = 1.

Using the formulas:

x=(0)cos90(4)sin90=0041=4x' = (0) \cos 90^\circ - (4) \sin 90^\circ = 0 \cdot 0 - 4 \cdot 1 = -4
y=(0)sin90+(4)cos90=01+40=0y' = (0) \sin 90^\circ + (4) \cos 90^\circ = 0 \cdot 1 + 4 \cdot 0 = 0

Thus, the image of point B(0,4)B(0,4) is B(4,0)B'(-4,0).

Rotation of Point B(0,4)B(0,4) by 9090^\circ about the Origin
Visualization of rotating point B(0,4)B(0,4) to B(4,0)B'(-4,0) by 9090^\circ counter-clockwise around the origin O(0,0)O(0,0).

Rotating a Line by 90°

Determine the image of the line y=2xy=2x rotated about the origin (0,0)(0,0) by 9090^\circ.

Let P(x,y)P(x,y) be any point on the line y=2xy=2x. Its image, P(x,y)P'(x',y'), after a 9090^\circ rotation about the origin is:

x=xcos90ysin90=x(0)y(1)=yx' = x \cos 90^\circ - y \sin 90^\circ = x(0) - y(1) = -y
y=xsin90+ycos90=x(1)+y(0)=xy' = x \sin 90^\circ + y \cos 90^\circ = x(1) + y(0) = x

From this, we get y=xy = -x' and x=yx = y'.

Substitute x=yx = y' and y=xy = -x' into the original line equation y=2xy=2x:

(x)=2(y)(-x') = 2(y')
x=2y-x' = 2y'

Replacing xx' and yy' back to xx and yy, the equation of the image line is x=2y-x = 2y or y=12xy = -\frac{1}{2}x.

Rotation of Line y=2xy=2x by 9090^\circ about the Origin
Original line y=2xy=2x rotated 9090^\circ results in image line y=12xy = -\frac{1}{2}x.

Exercises

  1. A point A(3,0)A(3,0) is rotated about the origin (0,0)(0,0) by 9090^\circ. Determine its image.
  2. Determine the image of the line y=4xy=4x rotated about the origin (0,0)(0,0) by 9090^\circ.
  3. Point P(2,5)P(-2, -5) is rotated about the origin O(0,0)O(0,0) by 180180^\circ. Determine the coordinates of its image!

Key Answers

  1. Point A(3,0)A(3,0), θ=90\theta = 90^\circ. x=3,y=0x=3, y=0.

    x=3cos900sin90=3(0)0(1)=0x' = 3 \cos 90^\circ - 0 \sin 90^\circ = 3(0) - 0(1) = 0
    y=3sin90+0cos90=3(1)+0(0)=3y' = 3 \sin 90^\circ + 0 \cos 90^\circ = 3(1) + 0(0) = 3

    Thus, its image is A(0,3)A'(0,3).

  2. Line y=4xy=4x, θ=90\theta = 90^\circ.

    x=yx' = -y
    y=xy' = x

    So y=xy = -x' and x=yx = y'.

    Substitute into the line equation: (x)=4(y)(-x') = 4(y').

    Image line equation: x=4y-x = 4y or y=14xy = -\frac{1}{4}x.

  3. Point P(2,5)P(-2,-5), θ=180\theta = 180^\circ. x=2,y=5x=-2, y=-5.

    cos180=1\cos 180^\circ = -1
    sin180=0\sin 180^\circ = 0
    x=(2)cos180(5)sin180=(2)(1)(5)(0)=20=2x' = (-2) \cos 180^\circ - (-5) \sin 180^\circ = (-2)(-1) - (-5)(0) = 2 - 0 = 2
    y=(2)sin180+(5)cos180=(2)(0)+(5)(1)=0+5=5y' = (-2) \sin 180^\circ + (-5) \cos 180^\circ = (-2)(0) + (-5)(-1) = 0 + 5 = 5

    Thus, the image of point P is P(2,5)P'(2,5).