Why this limit exists (Khan Academy)

971 Views Asked by At

This is from Khan Academy limits intro, it says that limit exists if $x$ approaches $7$ but I don't see how. When $x$ approaches $7$ we get different values from left and right side.

limits-graph

limits-answer

0 down vote accept

From the graph: g(8)=5,g(7)=2,g(5)=undefined,g(3)=3

if we come from right i.e.from g(8) then g(7) is approaching 4, g(x) is not defined for x=7 but it is not about having the value at x=7, it is about limits. If we approach x=7 from g(3) then g(x) approaches 2 and 2≠4. Where I am going wrong ?

4

There are 4 best solutions below

2
On

From the left, as $x \to 7^-$, it gets closer and closer to $4$.

From the right, as $x \to 7^+$, it gets closer and closer to $4$ as well.

Hence the limit is $4$.

Edit:

What matters is value that is very close around $7$, check out the value like $g(6.9)$ , $g(6.99),g(6.999)$ and so on, they are close to $4$, not $2$ right?

4
On

Are you sure about that? It looks like when you approach from the left and right, that it they approach the same 'holed' value. So, the limit as x goes to 7 approaches 4 and exists.

Note that the limit doesn't need to approach the actual value at that point either: that is the whole point of the concept of the 'limit', that which it 'approaches', not that which it is. Though, when the limit gives that which the variable 'approaches' is the 'right' value, it is called a continuous function.

6
On

I think I found the answer after a little hint by VgAcid above. Notice 2 things, 1st is explanation by VgAcid and 2nd is noticing graphs of chapter on limits :

1) the limit of g at x=3, equals, 3 is equal to 5, but the value of g at x=3 is undefined! They are not the same! That's the beauty of limits: they don't depend on the actual value of the function at the limit. They describe how the function behaves when it gets close to the limit. It means closed-circle (value not defined) does not affect the limits in anyway.

2) We find limits by sliding-along the graph or walking-on the lines of the graph, never by matching x values to y (this is what I was doing). When you slide-along or walk-on the lines of the graph you see from x = 9 to x = 8 and then towards x = 7, graph-line is moving towards y = 4 , graph-line moving towards y = 4 means x is approaching y = 4 (it does not matter if that y = 4 value is excluded, you have to see where the lines on the graph go)

P.S. I think the culprit (at least the associate of culprit) for this confusion is the equal sign (symbol ?) $=$. When we are using $x$ with $limits$ we are using $x \to 7$ but when we are using $g(x)$ we are using $=$: $$ x \to 7, g(x) = $$

We read it as as x approaches 7 then g(x) is equal to , hence the confusion. g(x) may or may not be equal to the value. 2nd, we are interested in $limits$ (opposed to values). $x$ and $g(x)$ are doing the same thing, approaching some value, but using different notation for same cause is the reason behind this confusion. It would have been much better if it had been something like this:

$$ x \to 7, g(x) \to $$

But who I am to say this. Mathematical notation, whatever it is, exists for a reason. Mathematics always a synonym for clarity and terseness. There must be a reason behind using $=$, in same expression, for both assigning values and approaching values.

0
On

Algebraically, note that: $$g(x)=\begin{cases}x-3, x\in[6,7)\cup (7,9]\\ \ \ \ \ \ \ \ 2, x=7\end{cases}$$ Now take the limit: $$\lim_{x\to 7^-} g(x)=7-3=4;\\ \lim_{x\to 7^+} g(x)=7-3=4;\\ \lim_{x\to 7} g(x)=\lim_{x\to 7^-} g(x)=\lim_{x\to 7^+} g(x)=4.$$

$\delta-\epsilon$ notation: $$\lim_{x\to a} g(x)=L \iff \\ \forall \epsilon>0, \exists \delta>0 \ \ \text{such that} \ \ 0<|x-a|<\delta \Rightarrow |g(x)-L|<\epsilon$$

It is: $$\lim_{x\to 7} g(x)=4 \iff \\ \forall \epsilon>0, \exists \delta>0 \ \ \text{such that} \ \ 0<|x-7|<\delta \Rightarrow |x-3-4|=|x-7|<\delta=\epsilon.$$ Note that: $$\lim_{x\to 7} g(x)=4\ne g(7)=2$$ therefore $g(x)$ is not continuous at $x=7$.

See more on Limit of a function.