Vertical and Horizontal Translations
Moving graphs up, down, left, or right without changing their shape. Master the counter-intuitive "Inside is Opposite" rule.
Introduction
Prerequisite Connection: You observed in Lesson 1.5 that moved the graph DOWN. Today, we formalize exactly why that happened.
Today's Increment: We are learning the simplest "Rigid Transformations": shifts. The shape does not stretch or shrink; it merely relocates.
Why This Matters for Calculus: In Calculus, you won't always memorize the derivative of . Instead, you'll know the derivative of and use transformation rules to handle the shift.
Explanation of Key Concepts
Vertical Shifts (Outside)
If , add to the y-coordinate. Move UP.
If , subtract from the y-coordinate. Move DOWN.
Horizontal Shifts (Inside)
Addition inside moves LEFT (Negative direction).
Subtraction inside moves RIGHT (Positive direction).
means x must be 5 bigger to get back to 0. So we shift to +5 (Right).
Worked Examples
Example 1: Vertical Shift
Graph relative to parent .
Example 2: Horizontal Shift
Graph relative to parent .
Example 3: Combined Shift
Describe the transformation for .
Common Pitfalls
- Mixing up Left and Right:
Students see and think "Positive is Right." You must memorize: Input changes are Counter-Intuitive.
- Forgetting Order of Operations:
In , the shift is 3 to the right. But in , you must factor it first to see the true shift! (We cover this in Lesson 2.4).
Real-World Application
Computer Graphics: Moving Sprites
In video game development, a character is drawn around a local origin (0,0). To move a character across the screen, we apply translations to every pixel or vertex.
new_y = player.y + velocity_y
If the player presses "Right," we add to the X-coordinate. If they jump "Up," we add to the Y-coordinate. This is exactly in action.
Practice Quiz
Loading...