1

Find the limit or prove the limit does not exist using the definition of the limit:

$$\lim\limits_{x \rightarrow c} x^2+x+1.$$

I am getting stuck in the problem following through on the algebra to figure out a $\delta$ to choose.

user1551
  • 139,064
user72195
  • 1,557
  • 3
  • 18
  • 30
  • @MhenniBenghorbal You would find that $|f(x)-L|<M|x-c|$ (e.g.) and you choose $\displaystyle \delta=\min\left{\frac{\varepsilon}{M},1\right}$. While I understand that this is the fully correct way to proceed (for example if $\varepsilon$ is large), I usually just say that if we are looking at $x\rightarrow c$ then we can always have $\delta<1$. What do you think of that approach... i.e. I just take $\delta=\varepsilon/M$? – JP McCarthy Jun 27 '13 at 15:48
  • Then you don't end up proving what you want, unless you specify from the beginning something like "wlog, we can assume $\varepsilon \leq M$". – Clement C. Jun 27 '13 at 15:50

1 Answers1

3

Fix any $\varepsilon > 0$. Define $M=|c|+1$, and $\delta = \min\left(\frac{\varepsilon}{2M},1\right)$. Then, for any $x$ such that $|x-c|\leq \delta$, $$ \begin{align*} |c^2+c+1-(x^2+x+1)|&=|c-x||c+x+1| \leq \delta (|c|+1+|x|) \\ &\leq \delta\cdot (M+|c|+\delta) \\ &\leq \delta\cdot (M+|c|+1) = \delta\cdot 2M \\ &\leq \varepsilon \end{align*} $$

Clement C.
  • 67,323
  • where did the M = [c] + 1 come from? – user72195 Jun 27 '13 at 15:52
  • If you do the proof without replacing anything by $M$ (just assuming $\delta \leq 1$), you end up with $\delta\cdot 2(|c|+1)$. In hindsight, that motivates setting a parameter $M=|c|+1$ to simplify the expressions. – Clement C. Jun 27 '13 at 15:56
  • so when you begin with c^2+c+1, where does that come from? – user72195 Jun 27 '13 at 15:59
  • You are trying to show that for all $\epsilon>0$ that you can find a $\delta>0$ such that if $|x-c| < \delta$, then $|f(c)-f(x)| < \epsilon$. Here $f(c)=c^2+c+1$. – copper.hat Jun 27 '13 at 16:02
  • @user72195: the only possible limit "that'd make sense" is $c^2+c+1$, so I set up to prove that $x^2+x+1\to c^2+c+1$. As a matter of fact, more generally, for any continuous function $f$, you'll have $f(x)\to f(c)$. – Clement C. Jun 27 '13 at 16:03
  • So, when you have a question such as proving a limit of f(x) is equal to some n. You begin with f(x)-n. Why, in this other example do you use f(c)-f(x)? – user72195 Jun 27 '13 at 16:04
  • I'm not sure to understand what you mean. If you want to prove that $f(x)\to \alpha$ when $x$ goes to $c$, you need to show that $|f(x)-\alpha|$ goes to $0$; or, in other terms, that for any fixed $\varepsilon > 0$, there exists $\delta_\varepsilon > 0$ such that if $|x-c|\leq \delta_\varepsilon$, then $|f(x)-\alpha|\leq \varepsilon$. Here, I took $\alpha$ to be $f(c)$. – Clement C. Jun 27 '13 at 16:08
  • I also seem to be getting lost in the algebra simplification. How do you move from the first inequality to the second? I see that M = [c] + 1 but how does the [x] become [c] + d? – user72195 Jun 27 '13 at 16:11
  • If $|c-x| \leq \delta$, then $c-\delta \leq x \leq c + \delta$ and $|x| \leq |c|+\delta$. – Clement C. Jun 27 '13 at 16:12
  • In the first step, how do you simplify into [c-x][c+x+1]? – user72195 Jun 27 '13 at 16:28
  • By factoring. Try to do it. – Clement C. Jun 27 '13 at 16:58