Source codeVideos

Command Palette

Search for a command to run...

Understanding Function Rotation

Rotation is a geometric transformation that rotates an object around a specific center point with a determined rotation angle. In the context of functions, rotation changes the position of the function graph by rotating every point on the graph.

Imagine rotating a wheel. Every point on the wheel will move following a circle with the rotation center as its center. Similarly with function graphs, every point will rotate following the same pattern.

Rotation Formula Around Center Point

For rotation around center point (a,b)(a, b) with angle θ\theta, the transformation formula is:

x=(xa)cosθ(yb)sinθ+ax' = (x - a) \cos \theta - (y - b) \sin \theta + a
y=(xa)sinθ+(yb)cosθ+by' = (x - a) \sin \theta + (y - b) \cos \theta + b

Where:

  • (x,y)(x, y) is the original point coordinate
  • (x,y)(x', y') is the rotated point coordinate
  • (a,b)(a, b) is the rotation center point
  • θ\theta is the rotation angle (positive for counterclockwise direction)

Special Rotation Around Origin

When rotation is performed around the origin (0,0)(0, 0), the formula becomes simpler:

  1. 90 Degree Rotation

    (x,y)(y,x)(x, y) \rightarrow (-y, x)
  2. 180 Degree Rotation

    (x,y)(x,y)(x, y) \rightarrow (-x, -y)
  3. 270 Degree Rotation

    (x,y)(y,x)(x, y) \rightarrow (y, -x)

Visualization of Quadratic Function Rotation

Let's see how rotation affects the quadratic function y=x2y = x^2:

Rotation of Function y=x2y = x^2 Around Origin
Comparison of original function with 90° counterclockwise rotation result.

Properties of Function Rotation

Rotation has several important properties:

  • Preserves Shape: Rotation does not change the basic shape of the graph, only changes its orientation
  • Preserves Distance: The distance between two points on the graph remains the same after rotation
  • Rotation Composition: Consecutive rotations can be combined by adding their angles

Application of Rotation to Various Functions

Linear Function Rotation

For linear function y=mx+cy = mx + c, rotation will change the slope and position of the line.

Rotation of Linear Function y=2x+1y = 2x + 1
45° rotation around origin.

Exponential Function Rotation

Rotation can also be applied to exponential functions with interesting results.

Rotation of Function y=2xy = 2^x
90° counterclockwise rotation.

Steps to Determine Rotation Results

To determine the rotation result of a function, follow these steps:

  • Determine the rotation center point and desired rotation angle
  • Select several points on the original function graph as samples
  • Apply the rotation formula to each sample point
  • Connect the rotation result points to form a new function graph
  • Verify the result by checking several additional points

Exercises

  1. Determine the rotation result of point (3,4)(3, 4) around the origin with a 90° counterclockwise angle.

  2. Function f(x)=x22x+1f(x) = x^2 - 2x + 1 is rotated 180° around the origin. Determine the coordinates of the rotation result vertex if the original vertex is at (1,0)(1, 0).

  3. Line y=3x2y = 3x - 2 is rotated 270° around the origin. Determine the equation of the rotation result line.

  4. Point (2,5)(2, 5) is rotated 60° around point (1,1)(1, 1). Determine the rotation result coordinates.

  5. Function y=xy = \sqrt{x} for x0x \geq 0 is rotated 90° counterclockwise around the origin. Explain the shape of the rotation result graph.

Answer Key

  1. Using the 90° rotation formula:

    (x,y)(y,x)(x, y) \rightarrow (-y, x)
    (3,4)(4,3)(3, 4) \rightarrow (-4, 3)

    So the rotation result is (4,3)(-4, 3).

    Visualization of Point (3, 4) Rotation
    90° counterclockwise rotation around origin.
  2. Original vertex rotated 180°:

    (x,y)(x,y)(x, y) \rightarrow (-x, -y)
    (1,0)(1,0)(1, 0) \rightarrow (-1, 0)

    The coordinates of the rotation result vertex are (1,0)(-1, 0).

    Rotation of Function f(x)=x22x+1f(x) = x^2 - 2x + 1
    180° rotation around origin.
  3. Take two points on the line and rotate 270°:

    (x,y)(y,x)(x, y) \rightarrow (y, -x)
    (0,2)(2,0)(0, -2) \rightarrow (-2, 0)
    (1,1)(1,1)(1, 1) \rightarrow (1, -1)
    m=101(2)=13m = \frac{-1 - 0}{1 - (-2)} = \frac{-1}{3}
    y=13x23y = -\frac{1}{3}x - \frac{2}{3}

    So the equation of the rotation result line is y=13x23y = -\frac{1}{3}x - \frac{2}{3}.

    Rotation of Line y=3x2y = 3x - 2
    270° rotation around origin.
  4. Using the rotation formula around a point with 60° angle:

    x=(xa)cosθ(yb)sinθ+ax' = (x-a) \cos \theta - (y-b) \sin \theta + a
    y=(xa)sinθ+(yb)cosθ+by' = (x-a) \sin \theta + (y-b) \cos \theta + b
    x=(21)12(51)32+1x' = (2-1) \cdot \frac{1}{2} - (5-1) \cdot \frac{\sqrt{3}}{2} + 1
    x=3223x' = \frac{3}{2} - 2\sqrt{3}
    y=(21)32+(51)12+1y' = (2-1) \cdot \frac{\sqrt{3}}{2} + (5-1) \cdot \frac{1}{2} + 1
    y=3+32y' = 3 + \frac{\sqrt{3}}{2}

    Rotation result coordinates: (3223,3+32)(\frac{3}{2} - 2\sqrt{3}, 3 + \frac{\sqrt{3}}{2})

    Rotation of Point (2, 5) Around Point (1, 1)
    60° counterclockwise rotation.
  5. Function y=xy = \sqrt{x} rotated 90° becomes:

    x=yx = -\sqrt{y}
    y=x2 for x0y = x^2 \text{ for } x \leq 0

    The rotation result graph forms a parabola that opens upward with domain x0x \leq 0 and range y0y \geq 0. This is a reflection of parabola y=x2y = x^2 across the y-axis.

    Rotation of Function y=xy = \sqrt{x}
    90° counterclockwise rotation around origin.