- 2,076
- 140
Homework Statement
This is my first attempt at a multivariate ε-δ proof. I don't know if I'm doing it right or wrong so I'm hoping someone can shed some light.
Prove :
\lim_{(x,y)\rightarrow(1,1)} x^2+y^2 = 2
Homework Equations
\forallε>0, \existsδ>0 | 0<|x-1||y-1|<δ \Rightarrow |x^2+y^2-2|<ε
The Attempt at a Solution
So we know : |x-1|<δ and |y-1|<δ
|x^2+y^2-2| = |x^2-1+y^2-1| ≤ |x^2-1|+|y^2-1| = |x+1||x-1| + |y+1||y-1| < δ|x+1| + δ|y+1|
Now let us express |x+1| and |y+1| in terms of δ so we can further simplify to our desired value of δ.
We can observe that : |x+1| < δ+2 and |y+1| < δ+2
So we continue forth : δ|x+1| + δ|y+1| < δ(δ+2) + δ(δ+2)
Now for convenience let us agree to allow δ to be bounded, say δ≤1 for simplicity.
Now we get : δ(δ+2) + δ(δ+2) ≤ 6δ ≤ ε
Therefore δ=min{1,ε/6}
So now we verify δ satisfies the definition.
\forallε>0, \existsδ=min{1,ε/6}>0 | 0<|x-1||y-1|<δ \Rightarrow |x^2+y^2-2|<ε
|x^2+y^2-2| = |x^2-1+y^2-1| ≤ |x^2-1|+|y^2-1| = |x+1||x-1| + |y+1||y-1| < δ|x+1| + δ|y+1|| < δ(δ+2) + δ(δ+2) ≤ 3ε/6 + 3ε/6 = ε
Thus δ=min{1,ε/6} \Rightarrow |f(x,y)-L|<ε and the proof is concluded. I want to know if I'm doing this correctly or if I've missed something.