Navigation: Wiki Home > Skills > Evaluating Limits of Rational Functions at Infinity
When you have a fraction with polynomials in both the numerator and denominator, and you let $x \to \infty$, what happens? Both the top and bottom get large—but who wins?
The answer depends on which polynomial grows faster. This section gives you a systematic technique to evaluate these limits: divide everything by the highest power of $x$ in the denominator. This transforms an indeterminate "$\frac{\infty}{\infty}$" into a clean, computable limit.
This technique is one of the most frequently tested skills in Calculus I, appearing on almost every exam.
| Property | Value |
|---|---|
| Concept | Limits |
| Course | MATH161 |
| Section | Stewart 2.6 |
| Difficulty | Intermediate |
| Time | ~25 minutes |
The Method: To evaluate $\lim_{x \to \infty} \frac{P(x)}{Q(x)}$ where $P$ and $Q$ are polynomials:
Evaluate $\lim_{x \to \infty} \frac{3x^2 - x - 2}{5x^2 + 4x + 1}$
Step 1: Highest power in denominator is $x^2$
Step 2: Divide every term by $x^2$: $$\frac{3x^2 - x - 2}{5x^2 + 4x + 1} = \frac{\frac{3x^2}{x^2} - \frac{x}{x^2} - \frac{2}{x^2}}{\frac{5x^2}{x^2} + \frac{4x}{x^2} + \frac{1}{x^2}} = \frac{3 - \frac{1}{x} - \frac{2}{x^2}}{5 + \frac{4}{x} + \frac{1}{x^2}}$$
Step 3: Take the limit as $x \to \infty$: $$\lim_{x \to \infty} \frac{3 - \frac{1}{x} - \frac{2}{x^2}}{5 + \frac{4}{x} + \frac{1}{x^2}} = \frac{3 - 0 - 0}{5 + 0 + 0} = \frac{3}{5}$$
Let $\deg(P)$ = degree of numerator, $\deg(Q)$ = degree of denominator.
| Case | Condition | Result | Horizontal Asymptote |
|---|---|---|---|
| Denominator wins | $\deg(P) < \deg(Q)$ | $\lim = 0$ | $y = 0$ |
| Tie | $\deg(P) = \deg(Q)$ | $\lim = \frac{a_n}{b_n}$ | $y = \frac{\text{leading coeff. of } P}{\text{leading coeff. of } Q}$ |
| Numerator wins | $\deg(P) > \deg(Q)$ | $\lim = \pm\infty$ | None |
When $x$ is very large, only the highest-power terms matter:
$$\frac{3x^2 - x - 2}{5x^2 + 4x + 1} \approx \frac{3x^2}{5x^2} = \frac{3}{5}$$
The lower-power terms become negligible compared to the dominant terms.
Degree of numerator < Degree of denominator:
Denominator grows faster → fraction shrinks → limit is 0
y ___________
| / \
| / \_______________ ← approaches 0
| /
+────────────────────────────→ x
Degree of numerator = Degree of denominator:
Same growth rate → ratio of leading coefficients
y
|
L ├─────────────────────────────── ← horizontal asymptote at L
| ~~~~~~~~~~~~~~~~~~~~~~~~
+────────────────────────────→ x
Degree of numerator > Degree of denominator:
Numerator grows faster → fraction grows → no horizontal asymptote
y
| /
| /
| /
| /
+────────────────────────────→ x
When $\deg(P) > \deg(Q)$, the limit is $\pm\infty$. The sign depends on:
Example: $\lim_{x \to \infty} \frac{x^3}{x+1}$
The degree of the numerator (3) exceeds the degree of the denominator (1). As $x \to \infty$: $$\frac{x^3}{x+1} \approx \frac{x^3}{x} = x^2 \to \infty$$
So $\lim_{x \to \infty} \frac{x^3}{x+1} = \infty$.
Without computing, determine the limit as $x \to \infty$ for each function based on degree comparison:
Evaluate $\lim_{x \to \infty} \frac{2x^3 + 5x - 1}{4x^3 - x^2 + 7}$ by dividing by the highest power of $x$ in the denominator.
Evaluate $\lim_{x \to -\infty} \frac{x^2 + 3x}{2x^2 - 5}$.
Is this limit the same as the limit as $x \to +\infty$?
Find all asymptotes (both vertical and horizontal) of: $$f(x) = \frac{x^2 - 9}{x^2 - 4}$$
Let $P(x) = a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0$ with $a_n \neq 0$, and let $Q(x) = b_m x^m + b_{m-1} x^{m-1} + \cdots + b_1 x + b_0$ with $b_m \neq 0$.
Prove that: $$\lim_{x \to \infty} \frac{P(x)}{Q(x)} = \begin{cases} 0 & \text{if } n < m \\ \frac{a_n}{b_m} & \text{if } n = m \\ \pm\infty & \text{if } n > m \end{cases}$$
The Weight Class Analogy: Think of polynomials like boxers in different weight classes. The degree is the weight class. When two polynomials "fight" (form a ratio):
The lower-degree terms are like "reach" or "speed"—they might matter at first, but for large $x$, only the weight class (degree) matters.
Looking back:
Looking ahead:
Real-world connections:
| Previous | Up | Next |
|---|---|---|
| Limits at Infinity Definition | Skills Index | Special Techniques for Limits at Infinity |
Last updated: 2026-01-22