0
$\begingroup$

Let $A \subseteq \mathbb{R}^n$, let $f:A \rightarrow \mathbb{R}^m$, and let $c$ be a limit point of $A$. $L$ and $L'$ are both limits of $f$ as $x$ approaches $c$. Show $L=L'$.

My attempt:

$\lim\limits_{x \to c}f(x)=L$ and $\lim\limits_{x \to c}f(x)=L'$. Therefore: For any $\epsilon >0$, we can find a $\delta_1,\delta_2 >0$ such that if:

$$0<|x-c|< \delta_1 \text{ and } 0<|x-c|< \delta_2$$ then $$0<|f(x)-L|<\epsilon \text{ and } 0<|f(x)-L'|<\epsilon$$.

Not sure where to go from here...

  • 0
    Hint: Choose $\epsilon$ small enough so that $\epsilon<\frac{1}{2}|L-L'|$. Then, derive a contradiction if $L\not=L'$. Use the triangle inequality.2017-02-02
  • 1
    when in doubt, triangle inequality2017-02-02
  • 0
    I think you need this http://meta.math.stackexchange.com/questions/3399/why-should-we-accept-answers2017-02-02

1 Answers 1

2

You are almost there. Take $$\delta=\min\{\delta_1,\delta_2\}.$$ Because $c$ is a limit point of $A$, we can find $x$ in the domain of $f$ for which $0<|x-c|<\delta$. Because $\delta\leq\delta_1$ and $\delta\leq\delta_2$, we get $$\begin{align} |L-L'|&=|(L-f(x))+(f(x)-L')|\\ &\leq|L-f(x)|+|f(x)-L'|\\ &=|f(x)-L|+|f(x)-L'|\\ &<\epsilon+\epsilon=2\epsilon. \end{align}.$$ By arbitrariness of $\epsilon$, we conclude that $|L-L'|=0$ and so $L=L'$.

  • 1
    where does $|L-L'|$ come from?2017-02-02
  • 0
    $ 0 \leq |(f(x) - L) - (f(x) - L')| = |L - L'| \leq |L - f(x)| + |f(x) - L'| \leq 2 \epsilon$. @combostudent2017-02-02
  • 0
    That's part of the trick. The idea is to come up with $$|L-L'|<2\epsilon$$ for all $\epsilon>0$. With this are forced to have $$|L-L'|\leq 0.$$ But abosulte value is non negative and so we get $$|L-L'|=0.$$2017-02-02