This topic introduces the definition of a function, domain and range, function notation, and operations with functions including evaluation, composition, and inverses. A strong grasp of these concepts is essential for advanced topics in precalculus and calculus.
f(x)
.f(x)
means the value of function f
at input x
.(f + g)(x) = f(x) + g(x)
(f \cdot g)(x) = f(x) \cdot g(x)
(f \circ g)(x) = f(g(x))
, plug one function into another.f(f^{-1}(x)) = x
. Found by solving y = f(x)
for x
and switching variables.Problem: Given f(x) = 2x + 3
and g(x) = x^2
, find (f \circ g)(2)
Step 1: Compute g(2)
:
g(2) = 2^2 = 4
Step 2: Plug that into f
:
f(4) = 2(4) + 3 = 11
Answer: (f \circ g)(2) = 11
g(x)
first, then apply f
.