Algebra 1.2
1.2 Functions —
Complete Knowledge Points
What is a Function?
A function is a rule that assigns exactly one output to every input. Think of it like a machine:
┌──────────┐
x ──▶ │ f(x) │ ──▶ output
└──────────┘
The input is called the argument, the output is called the value, and we write it as $f(x)$, read as "f of x".
Domain and Range
| Term | Meaning |
|---|---|
| Domain | All valid input values ($x$) |
| Range | All possible output values ($f(x)$) |
How to Find the Domain
Two main restrictions to watch for:
$[a, b]$ means $a \leq x \leq b$ — endpoints included
$(a, b)$ means $a < x < b$ — endpoints excluded
Function Composition
Function composition means plugging one function into another. You evaluate from the inside out — compute $g(x)$ first, then feed the result into $f$.
Example
Let $f(x) = x^2$ and $g(x) = x + 1$:
Domain of a Composition
The domain of $f(g(x))$ requires two conditions to hold simultaneously:
- $x$ must be in the domain of $g$
- $g(x)$ must be in the domain of $f$
Example: Let $f(x) = \sqrt{x}$ and $g(x) = x - 3$, so $f(g(x)) = \sqrt{x-3}$.
$g(x)$ is defined for all $x$ ✅ · $f(g(x))$ requires $x - 3 \geq 0 \implies x \geq 3$
Inverse Functions
The inverse function $f^{-1}(x)$ reverses what $f(x)$ does:
How to Find an Inverse Function
- Write $y = f(x)$
- Swap $x$ and $y$
- Solve for $y$
- Write $y$ as $f^{-1}(x)$
Example: Find the inverse of $f(x) = 2x + 3$
Key Properties of Inverse Functions
| Property | Description |
|---|---|
| Domain / Range swap | Domain of $f$ = Range of $f^{-1}$, and vice versa |
| Cancellation | $f(f^{-1}(x)) = x$ and $f^{-1}(f(x)) = x$ |
| Graph reflection | Graph of $f^{-1}$ is the reflection of $f$ across $y = x$ |
Even and Odd Functions
These describe the symmetry of a function's graph.
Even Function
The graph is symmetric about the y-axis. Example: $f(x) = x^2$, because $(-x)^2 = x^2$ ✅
Odd Function
The graph is symmetric about the origin. Example: $f(x) = x^3$, because $(-x)^3 = -x^3$ ✅
| Even | Odd | |
|---|---|---|
| Condition | $f(-x) = f(x)$ | $f(-x) = -f(x)$ |
| Symmetry | y-axis | Origin |
| Example | $x^2$, $\cos x$ | $x^3$, $\sin x$ |
Common Functions You Must Know
6.1 Linear Function
Graph: a straight line. $m$ = slope, $b$ = y-intercept.
6.2 Quadratic Function
Graph: a parabola. Opens up if $a > 0$, opens down if $a < 0$. Vertex at $x = -\dfrac{b}{2a}$.
6.3 Polynomial Function
Defined for all real numbers. Degree $n$ determines the general shape.
6.4 Rational Function
Undefined where $Q(x) = 0$. May have vertical asymptotes where $Q(x) = 0$ and horizontal asymptotes depending on degrees of $P$ and $Q$.
6.5 Absolute Value Function
Graph: V-shape, vertex at the origin. Always outputs a non-negative value.
Summary Checklist
- ✓ Understand what makes something a valid function
- ✓ Find the domain and range of a given function
- ✓ Compute $f(g(x))$ and $g(f(x))$ and understand they are different
- ✓ Find the domain of a composed function
- ✓ Find the inverse of a function algebraically
- ✓ Verify an inverse using $f(f^{-1}(x)) = x$
- ✓ Determine whether a function is even, odd, or neither
- ✓ Recognize and describe all 5 common function types
Comments
Post a Comment