Pre-Calculus & Functions Review
Roughly 80% of Calc 1 struggles trace back to rusty algebra and trig — not calculus itself. Master this before you touch limits.
01What a function actually is
A function is a rule that assigns to each input exactly one output. We write $f(x)$ to mean "the output of $f$ when the input is $x$." The set of allowed inputs is the domain; the set of resulting outputs is the range. The "exactly one output" part matters: $y = x^2$ is a function (each $x$ gives one $y$), but $x = y^2$ is not (each positive $x$ gives two $y$ values). The vertical line test captures this graphically — if any vertical line hits the graph more than once, it isn't a function.
Function notation is not multiplication. $f(3)$ means "evaluate $f$ at $3$," so if $f(x) = x^2 - 5$, then $f(3) = 9 - 5 = 4$. You'll also evaluate at expressions: $f(x+h) = (x+h)^2 - 5$. This exact move powers the limit definition of the derivative, so get comfortable now.
02Finding the domain
Three rules cover almost every Calc 1 case:
- Denominators can't be zero. For $f(x) = \dfrac{1}{x-2}$, exclude $x = 2$.
- Even roots need non-negative insides. For $g(x) = \sqrt{x-4}$, require $x - 4 \ge 0$, so $x \ge 4$.
- Logarithms need positive insides. For $h(x) = \ln(x+1)$, require $x + 1 > 0$, so $x > -1$.
When a function combines these, you intersect the restrictions. Domain questions reappear constantly in limits and continuity, so treat them as reflexes.
03The function families you must know
Calc 1 recycles the same handful of families. You should recognize each shape instantly:
- Polynomials — $x^2$, $x^3 - 2x$. Domain is always all reals. Smooth, no breaks.
- Rational functions — ratios like $\dfrac{x+1}{x-3}$. Watch for vertical asymptotes where the denominator is zero.
- Exponentials — $2^x$, $e^x$. Grow or decay fast; always positive; horizontal asymptote at $y=0$.
- Logarithms — $\ln x$, $\log x$. Inverse of exponentials; defined only for positive inputs; vertical asymptote at $x=0$.
- Trigonometric — $\sin x$, $\cos x$, $\tan x$. Periodic and oscillating. $\sin$ and $\cos$ live between $-1$ and $1$.
04Combining and composing functions
You can add, subtract, multiply, and divide functions the obvious way: $(f+g)(x) = f(x) + g(x)$. More important for calculus is composition, written $(f \circ g)(x) = f(g(x))$ — you feed the output of $g$ into $f$. If $f(x) = \sqrt{x}$ and $g(x) = x^2 + 1$, then $f(g(x)) = \sqrt{x^2 + 1}$. Order matters: $g(f(x)) = (\sqrt{x})^2 + 1 = x + 1$ (for $x \ge 0$) is different. Recognizing a complicated function as a composition of simpler ones is exactly the skill the chain rule will demand later, so practice decomposing: $\sqrt{x^2+1}$ is "square root of (something)," where the something is $x^2 + 1$.
05Transformations
Starting from a base graph $y = f(x)$:
- $f(x) + c$ shifts up by $c$; $f(x) - c$ shifts down.
- $f(x - c)$ shifts right by $c$ (note the counterintuitive sign); $f(x+c)$ shifts left.
- $-f(x)$ flips vertically; $f(-x)$ flips horizontally.
- $a\,f(x)$ stretches vertically by factor $a$.
Knowing these lets you sketch $y = (x-2)^2 + 3$ without plotting points: it's the parabola shifted right 2 and up 3.
06Trigonometry survival kit
You don't need all of trig, but you need this cold. On the unit circle, $\cos\theta$ is the $x$-coordinate and $\sin\theta$ is the $y$-coordinate. Memorize the key angles:
$$\sin 0 = 0,\quad \sin\tfrac{\pi}{6} = \tfrac{1}{2},\quad \sin\tfrac{\pi}{4} = \tfrac{\sqrt2}{2},\quad \sin\tfrac{\pi}{3} = \tfrac{\sqrt3}{2},\quad \sin\tfrac{\pi}{2} = 1$$
Cosine runs the same values in reverse. The identity you'll use most is the Pythagorean identity:
$$\sin^2\theta + \cos^2\theta = 1$$
Also know $\tan\theta = \dfrac{\sin\theta}{\cos\theta}$ and that angles are measured in radians in calculus ($180° = \pi$ radians), not degrees. This is non-negotiable: the derivative formulas for trig functions only work in radians.
07Exponent and logarithm rules
These algebra rules get used silently in nearly every derivative and integral:
$$x^a \cdot x^b = x^{a+b}, \qquad \frac{x^a}{x^b} = x^{a-b}, \qquad (x^a)^b = x^{ab}, \qquad x^{-a} = \frac{1}{x^a}, \qquad x^{1/n} = \sqrt[n]{x}$$
For logs (where $\ln$ is log base $e$):
$$\ln(ab) = \ln a + \ln b, \qquad \ln\frac{a}{b} = \ln a - \ln b, \qquad \ln(a^b) = b\ln a, \qquad \ln e^x = x$$
Rewriting $\dfrac{1}{\sqrt{x}}$ as $x^{-1/2}$ is the kind of move that makes derivatives trivial instead of painful.
08Factoring — the skill that saves your limits
When you plug a value into a limit and get $\frac{0}{0}$, the fix is almost always factoring and canceling. Keep these sharp: difference of squares $a^2 - b^2 = (a-b)(a+b)$; the quadratic factor patterns; and the quadratic formula $x = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a}$. For example, $\dfrac{x^2 - 9}{x - 3} = \dfrac{(x-3)(x+3)}{x-3} = x + 3$ once you cancel. That single technique resolves a huge fraction of Calc 1 limit problems.
Bottom line. If you can find domains, recognize the function families, compose and decompose functions, handle the unit circle in radians, and factor fluently, you have removed the biggest obstacles to Calc 1 before calculus even begins.
Given $f(x) = x^2 - 3x + 1$, evaluate $f(-2)$ and $f(x+1)$.
Solution
$f(-2) = (-2)^2 - 3(-2) + 1 = 4 + 6 + 1 = 11$.
$f(x+1) = (x+1)^2 - 3(x+1) + 1 = x^2 + 2x + 1 - 3x - 3 + 1 = x^2 - x - 1$.
Find the domain of $f(x) = \dfrac{x+5}{x^2 - 9}$.
Solution
Denominator $x^2 - 9 = (x-3)(x+3)$ is zero at $x = 3, -3$.
Domain: all reals except $x = \pm 3$.
Find the domain of $g(x) = \sqrt{7 - 2x}$.
Solution
Need $7 - 2x \ge 0 \Rightarrow x \le \tfrac{7}{2}$.
Domain: $\left(-\infty, \tfrac{7}{2}\right]$.
Find the domain of $h(x) = \ln(x^2 - 4)$.
Solution
Need $x^2 - 4 > 0 \Rightarrow (x-2)(x+2) > 0 \Rightarrow x < -2$ or $x > 2$.
Domain: $(-\infty, -2) \cup (2, \infty)$.
For $f(x) = \sqrt{x}$ and $g(x) = 3x - 2$, find $(f \circ g)(x)$ and $(g \circ f)(x)$, and state the domain of each.
Solution
$(f\circ g)(x) = \sqrt{3x - 2}$, domain $x \ge \tfrac{2}{3}$.
$(g\circ f)(x) = 3\sqrt{x} - 2$, domain $x \ge 0$.
Describe the transformations that turn $y = x^2$ into $y = -(x+3)^2 - 1$, then state the vertex.
Solution
Shift left 3, reflect over the $x$-axis, shift down 1.
Vertex: $(-3, -1)$.
Simplify to a single power of $x$: $\dfrac{x^3 \cdot \sqrt{x}}{x^{-2}}$.
Solution
$\dfrac{x^3 \cdot x^{1/2}}{x^{-2}} = x^{3 + 1/2 - (-2)} = x^{11/2}$.
Rewrite $\dfrac{2}{\sqrt[3]{x^2}}$ using a negative fractional exponent.
Solution
$\dfrac{2}{\sqrt[3]{x^2}} = \dfrac{2}{x^{2/3}} = 2x^{-2/3}$.
Evaluate without a calculator: $\cos\dfrac{\pi}{3}$, $\sin\dfrac{\pi}{4}$, and $\tan\dfrac{\pi}{6}$.
Solution
$\cos\dfrac{\pi}{3} = \dfrac{1}{2}$; $\ \sin\dfrac{\pi}{4} = \dfrac{\sqrt2}{2}$;
$\tan\dfrac{\pi}{6} = \dfrac{\sin(\pi/6)}{\cos(\pi/6)} = \dfrac{1/2}{\sqrt3/2} = \dfrac{1}{\sqrt3} = \dfrac{\sqrt3}{3}$.
Use a logarithm rule to expand $\ln\dfrac{x^3 y}{z^2}$ into separate terms.
Solution
$\ln\dfrac{x^3 y}{z^2} = 3\ln x + \ln y - 2\ln z$.
Factor and simplify: $\dfrac{x^2 - 25}{x^2 - 3x - 10}$.
Solution
$\dfrac{(x-5)(x+5)}{(x-5)(x+2)} = \dfrac{x+5}{x+2}$ (for $x \ne 5$).
Solve for $x$: $2^{x+1} = 16$.
Solution
$16 = 2^4$, so $x + 1 = 4 \Rightarrow x = 3$.
For $f(x) = x^2$, simplify the difference quotient $\dfrac{f(x+h) - f(x)}{h}$. (This is the exact setup behind the derivative.)
Solution
$f(x+h) = (x+h)^2 = x^2 + 2xh + h^2$, so the numerator is $2xh + h^2$.
$\dfrac{2xh + h^2}{h} = 2x + h$ (for $h \ne 0$).
Find the domain of $f(x) = \dfrac{\sqrt{x+2}}{x-1}$.
Solution
The root needs $x + 2 \ge 0 \Rightarrow x \ge -2$; the denominator needs $x \ne 1$.
Domain: $[-2, 1) \cup (1, \infty)$.
Express $h(x) = (2x + 5)^4$ as a composition $f(g(x))$.
Solution
Let $g(x) = 2x + 5$ (the inside) and $f(u) = u^4$ (the outside).
Then $f(g(x)) = (2x + 5)^4$. Spotting this inside/outside split is exactly what the chain rule needs.
Solve for $x$: $\ln x + \ln(x - 3) = \ln 4$.
Solution
Combine: $\ln[x(x-3)] = \ln 4 \Rightarrow x^2 - 3x = 4 \Rightarrow x^2 - 3x - 4 = 0$.
Factor: $(x-4)(x+1) = 0 \Rightarrow x = 4$ or $x = -1$.
Reject $x = -1$ (the logs require $x > 3$). Answer: $x = 4$.
Simplify $(8x^6)^{2/3}$.
Solution
$8^{2/3} = (2^3)^{2/3} = 2^2 = 4$, and $(x^6)^{2/3} = x^4$.
Answer: $4x^4$.
Find all $x$ in $[0, 2\pi)$ with $\sin x = \dfrac{1}{2}$.
Solution
Sine is positive in quadrants I and II, with reference angle $\dfrac{\pi}{6}$.
Answer: $x = \dfrac{\pi}{6}, \ \dfrac{5\pi}{6}$.
Factor completely: $x^3 - 4x$.
Solution
Pull out $x$: $x(x^2 - 4)$. Then difference of squares: $x^2 - 4 = (x-2)(x+2)$.
Answer: $x(x-2)(x+2)$.
Simplify $\dfrac{\sqrt{x} - 2}{x - 4}$. (A conjugate/factoring move you'll reuse constantly in limits.)
Solution
Recognize $x - 4 = (\sqrt{x} - 2)(\sqrt{x} + 2)$.
$\dfrac{\sqrt{x} - 2}{(\sqrt{x} - 2)(\sqrt{x} + 2)} = \dfrac{1}{\sqrt{x} + 2}$ (for $x \ne 4$).