Plus
$7.99 / month
- Nemotron Nano 12B VL
- Nemotron Nano 30B
- 20 AI credits/week
Save your current position in the course
Certificates are issued to Unlimited subscribers who finish a course. Your progress is saved either way — upgrade whenever you want yours.
Report a problem with this course via Discord
View available keyboard shortcuts
Reset all section and file completion progress
Calculus isn't just math; it's the "main character" of change. If Algebra is a screenshot, Calculus is the 4K 60fps video. It all starts with the Limit—the ultimate "what if?"
Imagine zooming into a pixel on your screen. You might never actually "touch" the center coordinate, but you can see exactly where the colors are heading as you get closer. In math, a limit asks: "As $x$ gets infinitely close to $c$, what value is $f(x)$ trying to be?" This chapter is your foundation. Master the limit, and you've unlocked the rest of AP Calc. Let's get it.
{
"type": "line",
"title": "Visualizing a Limit as x Approaches 2",
"subtitle": "f(x) = 0.5x + 1 (with a hole at x=2)",
"xLabel": "x",
"yLabel": "f(x)",
"labels": ["0", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4"],
"datasets": [
{
"label": "Function Path",
"data": [1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0],
"tension": 0,
"pointRadius": [3, 3, 3, 3, 0, 3, 3, 3, 3]
}
]
}
{
"title": "Types of Discontinuities",
"width": 520,
"height": 200,
"background": "grid",
"elements": [
{ "type": "line", "x1": 50, "y1": 150, "x2": 100, "y2": 100, "color": "#6366f1" },
{ "type": "circle", "cx": 100, "cy": 100, "r": 5, "stroke": "#6366f1", "fill": "white" },
{ "type": "line", "x1": 100, "y1": 100, "x2": 150, "y2": 50, "color": "#6366f1" },
{ "type": "label", "x": 100, "y": 180, "text": "Removable (Hole)", "align": "middle" },
{ "type": "line", "x1": 220, "y1": 100, "x2": 270, "y2": 100, "color": "#ef4444" },
{ "type": "circle", "cx": 270, "cy": 100, "r": 4, "fill": "#ef4444" },
{ "type": "circle", "cx": 270, "cy": 50, "r": 4, "stroke": "#ef4444", "fill": "white" },
{ "type": "line", "x1": 270, "y1": 50, "x2": 320, "y2": 50, "color": "#ef4444" },
{ "type": "label", "x": 270, "y": 180, "text": "Jump", "align": "middle" },
{ "type": "dashed", "x1": 420, "y1": 20, "x2": 420, "y2": 160, "color": "#94a3b8" },
{ "type": "line", "x1": 380, "y1": 150, "x2": 410, "y2": 20, "color": "#14b8a6" },
{ "type": "line", "x1": 430, "y1": 20, "x2": 460, "y2": 150, "color": "#14b8a6" },
{ "type": "label", "x": 420, "y": 180, "text": "Infinite (VA)", "align": "middle" }
]
}
The notation $\lim_{x \to c} f(x) = L$ is read as "the limit of $f(x)$ as $x$ approaches $c$ is $L$."
It is crucial to understand that $x$ never actually reaches $c$. We are interested in the trend of the $y$-values as the $x$-values get closer and closer to $c$ from both sides.
| $x$ | $f(x) = \frac{x^2-1}{x-1}$ |
|---|---|
| 0.9 | 1.9 |
| 0.99 | 1.99 |
| 0.999 | 1.999 |
| 1.001 | 2.001 |
| 1.01 | 2.01 |
| 1.1 | 2.1 |
In the table above, as $x \to 1$, $f(x) \to 2$. Even though $f(1)$ is undefined ($0/0$), the limit exists and is 2.
{
"type": "line",
"title": "Numerical Trend Toward the Limit",
"subtitle": "As x approaches 1, f(x) approaches 2",
"xLabel": "x value",
"yLabel": "f(x) value",
"labels": ["0.9", "0.99", "0.999", "1.001", "1.01", "1.1"],
"datasets": [
{
"label": "f(x)",
"data": [1.9, 1.99, 1.999, 2.001, 2.01, 2.1],
"tension": 0.1,
"fill": false,
"borderColor": "#6366f1"
}
]
}
When evaluating $\lim_{x \to c} f(x)$, always try Direct Substitution first. If the result is a real number, you are usually finished. If you get an Indeterminate Form such as $\frac{0}{0}$, you must use algebraic manipulation:
A function is "continuous" if you can draw it without lifting your pencil. However, the AP exam requires the Three-Part Definition of Continuity. For $f(x)$ to be continuous at $x=c$:
If any of these fail, the function is discontinuous. Piecewise functions are common targets for continuity questions. You must ensure the pieces "meet" at the same $y$-value.
Limits at infinity ($\lim_{x \to \pm \infty} f(x)$) determine the Horizontal Asymptotes.
For Vertical Asymptotes, look for values where the denominator is zero but the numerator is not. The limit as $x$ approaches these values will be $\infty$ or $-\infty$.
{
"type": "line",
"title": "Horizontal Asymptote Behavior",
"subtitle": "f(x) = (2x + 1) / (x + 1) approaches y = 2",
"xLabel": "x",
"yLabel": "f(x)",
"labels": ["0", "2", "5", "10", "20", "50", "100"],
"datasets": [
{
"label": "f(x)",
"data": [1.0, 1.67, 1.83, 1.91, 1.95, 1.98, 1.99],
"borderColor": "#f59e0b",
"tension": 0.3
},
{
"label": "Asymptote y=2",
"data": [2, 2, 2, 2, 2, 2, 2],
"borderColor": "#94a3b8",
"borderDash": [5, 5],
"pointRadius": 0
}
]
}
The Squeeze Theorem is used when a function is trapped between two other functions whose limits are known.
Example: To find $\lim_{x \to 0} x^2 \sin(\frac{1}{x})$, we know $-1 \leq \sin(\frac{1}{x}) \leq 1$.
Multiplying by $x^2$: $-x^2 \leq x^2 \sin(\frac{1}{x}) \leq x^2$.
Since $\lim_{x \to 0} -x^2 = 0$ and $\lim_{x \to 0} x^2 = 0$, then $\lim_{x \to 0} x^2 \sin(\frac{1}{x}) = 0$.
The Intermediate Value Theorem (IVT) is an existence theorem. It doesn't tell you where a value is, only that it must exist. It is frequently used to prove a function has a root (zero) on an interval $[a, b]$ if $f(a)$ and $f(b)$ have opposite signs.
Evaluate $\lim_{x \to 3} (x^2 - 5x + 2)$.
Solution:
Substitute $x = 3$:
$$(3)^2 - 5(3) + 2 = 9 - 15 + 2 = -4$$
Since the function is a polynomial (continuous everywhere), the limit is simply the function value.
Evaluate $\lim_{x \to -3} \frac{x^2 + x - 6}{x + 3}$.
Solution:
Direct substitution gives $\frac{(-3)^2 + (-3) - 6}{-3 + 3} = \frac{0}{0}$. Factor the numerator:
$$\lim_{x \to -3} \frac{(x+3)(x-2)}{x+3} = \lim_{x \to -3} (x-2) = -3 - 2 = -5$$
Evaluate $\lim_{x \to 4} \frac{\sqrt{x} - 2}{x - 4}$.
Solution:
Multiply by the conjugate $\sqrt{x} + 2$:
$$\lim_{x \to 4} \frac{(\sqrt{x} - 2)(\sqrt{x} + 2)}{(x - 4)(\sqrt{x} + 2)} = \lim_{x \to 4} \frac{x - 4}{(x - 4)(\sqrt{x} + 2)}$$
$$\lim_{x \to 4} \frac{1}{\sqrt{x} + 2} = \frac{1}{\sqrt{4} + 2} = \frac{1}{4}$$
Let $f(x) = \begin{cases} x+1 & x < 2 \ 5 & x = 2 \ x^2-1 & x > 2 \end{cases}$. Find $\lim_{x \to 2^-} f(x)$ and $\lim_{x \to 2^+} f(x)$.
Solution:
From the left: $\lim_{x \to 2^-} (x+1) = 3$.
From the right: $\lim_{x \to 2^+} (x^2-1) = 2^2-1 = 3$.
Since $3 = 3$, $\lim_{x \to 2} f(x) = 3$. Note that $f(2)=5$, so the limit exists but the function is not continuous at $x=2$.
Evaluate $\lim_{x \to 0} \frac{\sin(5x)}{x}$.
Solution:
We use the identity $\lim_{\theta \to 0} \frac{\sin \theta}{\theta} = 1$. Multiply numerator and denominator by 5:
$$\lim_{x \to 0} 5 \cdot \frac{\sin(5x)}{5x} = 5(1) = 5$$
Evaluate $\lim_{x \to 2^+} \frac{1}{x-2}$.
Solution:
As $x$ approaches 2 from the right (e.g., 2.1, 2.01), the denominator is a very small positive number.
$$\frac{1}{\text{small positive}} \to \infty$$
Thus, the limit is $\infty$.
Evaluate $\lim_{x \to \infty} \frac{3x^2 - 4x + 5}{2x^2 + 7}$.
Solution:
Divide every term by the highest power of $x$ in the denominator ($x^2$):
$$\lim_{x \to \infty} \frac{3 - \frac{4}{x} + \frac{5}{x^2}}{2 + \frac{7}{x^2}} = \frac{3 - 0 + 0}{2 + 0} = \frac{3}{2}$$
Evaluate $\lim_{x \to \infty} \frac{x+5}{x^2-1}$.
Solution:
Since the denominator grows faster than the numerator:
$$\lim_{x \to \infty} \frac{\frac{1}{x} + \frac{5}{x^2}}{1 - \frac{1}{x^2}} = \frac{0}{1} = 0$$
Find the value of $k$ such that $f(x)$ is continuous at $x=3$:
$f(x) = \begin{cases} kx^2 & x \leq 3 \ 2x+k & x > 3 \end{cases}$
Solution:
For continuity, $\lim_{x \to 3^-} f(x) = \lim_{x \to 3^+} f(x)$.
$$k(3)^2 = 2(3) + k \implies 9k = 6 + k \implies 8k = 6 \implies k = \frac{3}{4}$$
Find $\lim_{x \to 0} x^4 \cos(\frac{2}{x})$.
Solution:
$-1 \leq \cos(\frac{2}{x}) \leq 1$
$-x^4 \leq x^4 \cos(\frac{2}{x}) \leq x^4$
$\lim_{x \to 0} -x^4 = 0$ and $\lim_{x \to 0} x^4 = 0$.
By Squeeze Theorem, $\lim_{x \to 0} x^4 \cos(\frac{2}{x}) = 0$.
Show that $f(x) = x^3 + x - 1$ has a zero on $[0, 1]$.
Solution:
Evaluate $\lim_{x \to \infty} \frac{\sqrt{9x^2+1}}{x+1}$.
Solution:
Divide by $x$ (which is $\sqrt{x^2}$ for $x>0$):
$$\lim_{x \to \infty} \frac{\sqrt{\frac{9x^2}{x^2}+\frac{1}{x^2}}}{\frac{x}{x}+\frac{1}{x}} = \frac{\sqrt{9+0}}{1+0} = 3$$
Evaluate $\lim_{x \to -\infty} \frac{\sqrt{4x^2+1}}{x+1}$.
Solution:
Caution: For $x < 0$, $x = -\sqrt{x^2}$.
$$\lim_{x \to -\infty} \frac{\sqrt{x^2(4 + \frac{1}{x^2})}}{x(1 + \frac{1}{x})} = \lim_{x \to -\infty} \frac{|x|\sqrt{4 + \frac{1}{x^2}}}{x(1 + \frac{1}{x})}$$
Since $x \to -\infty$, $|x| = -x$.
$$\lim_{x \to -\infty} \frac{-x\sqrt{4 + 0}}{x(1 + 0)} = -2$$
Identify the hole in $f(x) = \frac{x^2-x-6}{x-3}$.
Solution:
Factor: $f(x) = \frac{(x-3)(x+2)}{x-3}$. The factor $(x-3)$ cancels.
The hole is at $x=3$. To find the $y$-coordinate: $\lim_{x \to 3} (x+2) = 5$.
Hole at $(3, 5)$.
Find the vertical asymptotes of $f(x) = \frac{x+2}{x^2-4}$.
Solution:
$f(x) = \frac{x+2}{(x+2)(x-2)} = \frac{1}{x-2}$ (for $x \neq -2$).
$x = -2$ is a removable discontinuity (hole).
$x = 2$ is an infinite discontinuity (vertical asymptote).
Evaluate $\lim_{x \to 0} \frac{\frac{1}{x+3} - \frac{1}{3}}{x}$.
Solution:
Find common denominator in numerator:
$$\lim_{x \to 0} \frac{\frac{3 - (x+3)}{3(x+3)}}{x} = \lim_{x \to 0} \frac{-x}{3x(x+3)} = \lim_{x \to 0} \frac{-1}{3(x+3)} = -\frac{1}{9}$$
Evaluate $\lim_{x \to 0} \sin(\frac{1}{x})$.
Solution:
As $x \to 0$, the value $\frac{1}{x}$ goes to infinity. The sine function oscillates between $-1$ and $1$ infinitely many times as it approaches 0. It does not settle on a single value.
Limit Does Not Exist (DNE).
Evaluate continuity for $f(x) = \frac{|x|}{x}$ at $x=0$.
Solution:
$\lim_{x \to 0^+} \frac{x}{x} = 1$.
$\lim_{x \to 0^-} \frac{-x}{x} = -1$.
Since $1 \neq -1$, the limit DNE. This is a jump discontinuity.
Find $a$ and $b$ such that $f(x)$ is continuous everywhere:
$f(x) = \begin{cases} 2 & x \leq -1 \ ax+b & -1 < x < 3 \ -2 & x \geq 3 \end{cases}$
Solution:
At $x = -1$: $2 = a(-1) + b \implies -a + b = 2$.
At $x = 3$: $a(3) + b = -2 \implies 3a + b = -2$.
Subtracting the equations: $4a = -4 \implies a = -1$.
Substitute $a$: $-(-1) + b = 2 \implies 1 + b = 2 \implies b = 1$.
Evaluate $\lim_{x \to 0} \frac{\tan x}{x}$.
Solution:
$$\lim_{x \to 0} \frac{\sin x}{\cos x \cdot x} = \left(\lim_{x \to 0} \frac{\sin x}{x}\right) \cdot \left(\lim_{x \to 0} \frac{1}{\cos x}\right) = 1 \cdot \frac{1}{1} = 1$$
Given $\lim_{x \to 2} f(x) = 5$, find $\lim_{x \to 2} [f(x)]^2 - 3$.
Solution:
Using limit properties:
$$(\lim_{x \to 2} f(x))^2 - \lim_{x \to 2} 3 = 5^2 - 3 = 22$$
Prove $x^5 - x^2 + 2x + 3 = 0$ has at least one root.
Solution:
Let $f(x) = x^5 - x^2 + 2x + 3$. $f(x)$ is continuous.
$f(-2) = -32 - 4 - 4 + 3 = -37$.
$f(0) = 3$.
Since $f(-2) < 0 < f(0)$, by IVT, there is a root between $x=-2$ and $x=0$.
Evaluate $\lim_{x \to \infty} \frac{e^x}{e^x + 1}$.
Solution:
Divide by $e^x$:
$$\lim_{x \to \infty} \frac{1}{1 + \frac{1}{e^x}} = \frac{1}{1 + 0} = 1$$
Evaluate $\lim_{x \to -\infty} \frac{e^x}{e^x + 1}$.
Solution:
As $x \to -\infty$, $e^x \to 0$.
$$\frac{0}{0+1} = 0$$
If $\lim_{x \to c} f(x) = 4$ and $\lim_{x \to c} g(x) = -2$, find $\lim_{x \to c} [3f(x) + g(x)]$.
Solution:
$3(4) + (-2) = 12 - 2 = 10$.
Evaluate $\lim_{x \to 0^+} \ln(x)$.
Solution:
As $x$ approaches 0 from the positive side, the natural log function decreases without bound.
Limit = $-\infty$.
Evaluate $\lim_{x \to 0} x \sin(1/x)$.
Solution:
$-1 \leq \sin(1/x) \leq 1$
$-|x| \leq x \sin(1/x) \leq |x|$
Since $\lim_{x \to 0} -|x| = 0$ and $\lim_{x \to 0} |x| = 0$, the limit is 0.
Find $a$ so $f(x)$ is continuous: $f(x) = \begin{cases} \frac{\sin x}{x} & x \neq 0 \ a & x = 0 \end{cases}$
Solution:
$\lim_{x \to 0} \frac{\sin x}{x} = 1$.
For continuity, $f(0)$ must equal the limit.
$a = 1$.
Given a graph with:
Evaluate $\lim_{x \to 0} \frac{1-\cos x}{x^2}$.
Solution:
Multiply by conjugate $1+\cos x$:
$$\lim_{x \to 0} \frac{1-\cos^2 x}{x^2(1+\cos x)} = \lim_{x \to 0} \frac{\sin^2 x}{x^2(1+\cos x)}$$
$$\lim_{x \to 0} \left(\frac{\sin x}{x}\right)^2 \cdot \frac{1}{1+\cos x} = (1)^2 \cdot \frac{1}{2} = \frac{1}{2}$$
Evaluate $\lim_{x \to \infty} \frac{x^3 - 1}{x^2 + 4}$.
Solution:
$$\lim_{x \to \infty} \frac{x - \frac{1}{x^2}}{1 + \frac{4}{x^2}} = \infty$$
No horizontal asymptote exists.
Does $f(x) = \sqrt{x+1}$ take the value $1.5$ on the interval $[0, 3]$?
Solution:
$f(x)$ is continuous on $[0, 3]$.
$f(0) = \sqrt{1} = 1$.
$f(3) = \sqrt{4} = 2$.
Since $1 < 1.5 < 2$, by IVT, yes, there is some $c \in (0, 3)$ such that $f(c) = 1.5$.
Evaluate $\lim_{x \to 2} \frac{|x-2|}{x-2}$.
Solution:
Left: $\lim_{x \to 2^-} \frac{-(x-2)}{x-2} = -1$.
Right: $\lim_{x \to 2^+} \frac{x-2}{x-2} = 1$.
Limit DNE.
Evaluate $\lim_{x \to \pi} \frac{\sin x}{x - \pi}$.
Solution:
Let $u = x - \pi$. As $x \to \pi, u \to 0$.
Then $x = u + \pi$.
$$\lim_{u \to 0} \frac{\sin(u + \pi)}{u} = \lim_{u \to 0} \frac{-\sin u}{u} = -1$$
Where is $f(x) = \frac{1}{\sqrt{x^2-1}}$ continuous?
Solution:
The function is continuous on its domain.
$x^2-1 > 0 \implies (x-1)(x+1) > 0$.
$x \in (-\infty, -1) \cup (1, \infty)$.
The function is continuous on these open intervals.
End of Unit 1.
Right-click any tab and choose Split screen to view it here.
Course Mastery Certificates require an active Unlimited subscription at the time of generation and 100% course completion. They recognise learning content completion only — not an accredited qualification, licence, or professional credential unless explicitly stated. edusolum may modify eligibility, design, and issuance requirements per its Terms of Service.