Conventionally, functions will return an output when given an input. Take the most basic parabola. When you substitute with any number, the y-value can be calculated in a straightforward fashion. For example, when
When we introduce rational functions, division by zero complicates the process. Fig. 1 shows the graph of
When we try to compute with This is undefined, and is shown by the hole in Fig. 1. However, when we get closer and closer to the factors are both nonzero and cancel out, so the y-value approaches
Limits enable the representation of y-values that may not exist in the function, but are approached from both sides. This is extremely useful for the questions calculus answers, such as “What is the slope of the tangent line at any point on this function?” and “What is the area under a curve?”
The limit has a conventional notation, and we can represent Fig. 1’s output at with
This reads as “The limit of f(x) as x approaches 2 is equal to 7”. The symbol means that a limit is being taken, the below it means we take the limit of the function as x approaches 2, and the represents the function which we are taking the limit of.
When taking a limit, the intuitive way to think about it is “what pattern is observed as we get infinitely close from both sides?”
Fig. 2 shows the graph of
To find , you can refer to a table of input/output values. The following table shows what they look like as approaches 1 from the left, which can be notated as and read as “the left hand limit of g(x) as x approaches 1”.
| x | y |
|---|---|
| 0.9 | 8.3790 |
| 0.99 | 8.0398 |
| 0.999 | 8.0039 |
| 0.9999 | 8.0003 |
This table illustrates outputs as approaches 1 from the right, notated as and read as “the right hand limit of g(x) as x approaches 1”.
| x | y |
|---|---|
| 1.1 | 7.581 |
| 1.01 | 7.9598 |
| 1.001 | 7.9960 |
| 1.0001 | 7.9996 |
With limits, x is evaluated infinitely close to the value it approaches. In this example, the limit is obviously equal to eight, as shown by both the left and right tables.
The phrase “infinitely close” is hand-waving how a limit is actually defined, and the formal definition will be revealed later in this section.
For a limit to exist, its left-hand and right-hand limits must be equal. Let’s take a look at a piecewise function:
Fig. 3 shows the graph of this piecewise function, which appears as two disjoint lines.
Let’s use our table approach and try to find the limit on each side. The following table represents
| x | y |
|---|---|
| 1.9 | 5.95 |
| 1.99 | 5.995 |
| 1.999 | 5.9995 |
| 1.9999 | 5.99995 |
From the left-hand side, the limit approaches 6. Let’s try
| x | y |
|---|---|
| 2.1 | 3.1 |
| 2.01 | 3.01 |
| 2.001 | 3.001 |
| 2.0001 | 3.0001 |
From the right-hand side, the limit approaches 3. As demonstrated by the tables, both the left-hand and right-hand limits exist, but since they are unequal, the limit does not exist.
To generalize, a limit only exists if the left-hand and right-hand limits are equivalent.
In this chapter, we used tables and manually calculated output values as input values approached the value the limit was taken at. This isn’t a very meaningful way to use limits, and the table method was employed for illustrative purposes. As this series continues, the utility of limits is found within the concept of approaching a value and the clever ways one can manipulate them.
That is all for the introduction of limits, and until next time, I am out.