Skip to content
Hard

Combining Transformations

Simple Explanation

Multiple transformations can be applied to one function at once, written as y = aΒ·f(b(xβˆ’h)) + k. Applying them correctly requires a consistent order: handle the horizontal changes (reflection/stretch/shift inside the brackets) and vertical changes (reflection/stretch/shift outside) working from the inside out, closest to x first.

Why Do We Need It?

Real transformed functions almost always combine several changes at once β€” knowing a reliable order to apply them prevents easily-made errors from applying them in a mismatched sequence.

See It

y = xΒ² transformed into y = βˆ’2(x+1)Β² + 4
-5-5-4-4-3-3-2-2-1-111223344550xy(-1,4)

An upward-opening parabola and a second, narrower downward-opening parabola shifted left and up

Formula

Translating a Function

y = f(x βˆ’ h) + k

Shifts the entire graph of y=f(x) horizontally by h units and vertically by k units, without changing its shape at all.

h
β€” the horizontal shift (right if h>0, left if h<0 β€” note the subtraction)
k
β€” the vertical shift (up if k>0, down if k<0)

When to use it: Whenever a graph needs to be moved to a new location without changing its shape.

Worked Example

Describe a combined transformation

Describe every transformation applied to y = xΒ² to produce y = βˆ’2(x + 1)Β² + 4.

    Why Does This Work?

    Each transformation modifies a different, independent part of the equation (a scales/flips the whole output, h/b affect the input before f is applied, k shifts the final output) β€” since they touch different parts of the expression, they can be identified and applied one at a time without interfering with each other, as long as the horizontal changes are handled before reading x into f.

    Real-Life Example

    Adjusting a signal for size, direction, and offset all at once

    An engineer needs to invert a sensor signal, amplify it, and offset it to match a new reference baseline, all as one combined adjustment.

    This maps directly onto reflection (invert), stretch (amplify), and translation (offset) β€” the same three transformations combined, exactly as in this concept.

    Practice

    What is the vertex of y = 3(x βˆ’ 2)Β² βˆ’ 5, viewed as a transformation of y = xΒ²?

    Hard

    Common mistake

    Applying the vertical shift (k) before the vertical stretch/reflection (a) β€” always scale (and reflect, if needed) first, then shift, matching the order the parameters appear in y=aΒ·f(xβˆ’h)+k.

    Quick Review

    • y = aΒ·f(b(xβˆ’h)) + k combines reflection, stretch/compression, and translation.
    • Identify each parameter (a, b, h, k) separately, then describe their combined effect.
    • Horizontal changes happen to x before f is applied; vertical changes happen to the output afterward.