Review lecture
Review lecture
1. Functions
A functionf is a relation that assigns to each element x in a setD exactly one element,
called f (x) , in a set E . The set D is called the domain of the function, and the set E is
called the codomain.
Domain: The set of all possible inputs x for the function.
Example:
f (x) = x 2 + 1
For the composition f ∘g to be defined, the range of g(x) must be a subset of the domain
of f (x) .
Example:
Letf (x) = 2x + 3andg(x) = x 2. Then:
(f ∘g)(x) = f (g(x)) = f (x 2) = 2x 2 + 3
3. Inverse of a Function
The inverse of a functionf , denoted byf − 1, reverses the mapping off . Forf − 1to exist,f must
be one-to-one (bijective).
A functionf is one-to-one if:
f (a) = f (b) ⟹ a = b
Example :
Let f (x) = 2x + 3.
To find f − 1(x) :
y− 3
y = 2x + 3 ⇒ x=
2
Thus,f − 1(x) = x− 3
2
.
4. Elementary Functions
Elementary functions include:
Polynomials :f (x) = a n x n + a n− 1x n− 1 + ⋯ + a 1x + a 0
Rational functions:f (x) = Q(x) whereP (x) andQ(x) are polynomials.
P (x)
5. Problems
1. Identify the Domain and Range:
Find the domain and range of the function f (x) = √x− 2 .
2. Function Composition:
Let f (x) = 3x − 4 and g(x) = x2 + 1 . Find (f ∘g)(x) and (g ∘f )(x) .
3. Inverse Function:
Determine if the function f (x) = x3 + 2 has an inverse. If it does, find it.
4. Polynomial Function:
Given f (x) = x 4 − 2x 2 + 1, determine whether f (x) is one-to-one.