Skip to content

9709 · 1.2

Functions — FAQ

Frequently asked questions for 9709 Functions. Direct answers first, then deeper explanation — then practise with marking.

What's the difference between $f(g(x))$ and $g(f(x))$?

The order of operations is different, which usually leads to a different final function. For f(g(x))f(g(x)), you apply the function gg first, then apply ff to that result. For g(f(x))g(f(x)), you apply ff first, then apply gg. Think of it as putting on socks then shoes (f(g(x))f(g(x))) versus shoes then socks (g(f(x))g(f(x))) – the order matters!

Why do we need to restrict the domain of $y=x^2$ to find its inverse?

The function f(x)=x2f(x)=x^2 is not one-to-one because different inputs can give the same output (e.g., f(2)=4f(2)=4 and f(2)=4f(-2)=4). An inverse must map an output back to a single unique input. By restricting the domain to, for example, x0x \ge 0, we ensure that every output comes from only one input, which allows an inverse function, f1(x)=xf^{-1}(x) = \sqrt{x}, to exist.

How do I find the range of a quadratic function quickly?

The best method is to complete the square to write the quadratic ax2+bx+cax^2+bx+c in the form a(xh)2+ka(x-h)^2+k. The vertex is at (h,k)(h, k). If the parabola opens upwards (i.e., a>0a>0), the range is yky \ge k. If it opens downwards (i.e., a<0a<0), the range is yky \le k. Always remember to check if the domain is restricted, as this might alter the range.

Is $f^{-1}(x)$ the same as $\frac{1}{f(x)}$?

No, this is a very important distinction. f1(x)f^{-1}(x) denotes the inverse function, which reverses the mapping. 1f(x)\frac{1}{f(x)} is the reciprocal of the function's value, sometimes written as [f(x)]1[f(x)]^{-1}. They are completely different concepts.