Proving the limit (delta epsilon)

  • Thread starter Thread starter zeion
  • Start date Start date
  • Tags Tags
    Epsilon Limit
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 3K views
zeion
Messages
455
Reaction score
1

Homework Statement



Prove the follow statements directly using the formal [tex]\epsilon , \delta[/tex] definition.

[tex]\lim_{x\rightarrow 1} \frac{x + 3}{x^2 + x + 4} = \frac{2}{3}[/tex]




Homework Equations





The Attempt at a Solution



[tex]0 < |x - 1| < \delta \rightarrow 0 < |\frac{x + 3}{x^2 + x + 4} - \frac{2}{3}| < \epsilon[/tex]

Not sure what to do now.

0 < | 3(x+3) - 2(x2 + x + 4) / 3(x2+x+4) | < e
0 < | -2x2 + x + 1 / 3(x2+x+4) | < e
0 < | (-2x - 1)(x - 1) / 3(x2+x+4) | < e

Now I can control (x - 1), but how do I do this?
 
Physics news on Phys.org
Should I have posted this in the "Calculus and Beyond" section? :/
 
zeion said:

Homework Statement



Prove the follow statements directly using the formal [tex]\epsilon , \delta[/tex] definition.

[tex]\lim_{x\rightarrow 1} \frac{x + 3}{x^2 + x + 4} = \frac{2}{3}[/tex]




Homework Equations





The Attempt at a Solution



[tex]0 < |x - 1| < \delta \rightarrow 0 < |\frac{x + 3}{x^2 + x + 4} - \frac{2}{3}| < \epsilon[/tex]

Not sure what to do now.

0 < | 3(x+3) - 2(x2 + x + 4) / 3(x2+x+4) | < e
0 < | -2x2 + x + 1 / 3(x2+x+4) | < e
0 < | (-2x - 1)(x - 1) / 3(x2+x+4) | < e

Now I can control (x - 1), but how do I do this?
Now you need to get a bound on [itex]|(2x+1)/3(x^2+ x+ 4)|[/itex]

For example, you can start by assuming that |x-1|< 1 so that 0< x< 2. Then 0< 2x< 4 and 1< 2x+1< 5. Also 0< x2< 4 so 0< x2+ x< 6, 4< x2+ x+ 4< 10 and 12< 3(x2+ x+ 4)< 30. That tells you that 1/30< 1/3(x2+ x+ 4)< 1/12 and so that 1/30< (2x+1)/3(x2+ x+ 4)< 5/12.

Now you know that |x-1|/30< (2x-1)|x-1|/3(x2+ x+ 4)< 5|x-1|/12

Since you want to make sure that is less than [itex]\epsilon[/itex], you want [itex]5|x-1|/12<\epsilon[/itex] so you need [itex]|x-1|< 12\epsilon/5[/itex]. To make certain that |x-1|< 1 so all of that is true, take [itex]\delta[/itex] to be the smaller of 1 and [itex]12\epsilon/5|[/itex].
 
HallsofIvy said:
For example, you can start by assuming that |x-1|< 1

I've been told that I should only pick values that are less than whatever x is approaching (ie. <1 in this case), is this true?