Let $\{a_n\}$ be a sequence. If $a,b$ given so that $\lim\limits_{n\rightarrow\infty} a_n=a$ and $\lim\limits_{n\rightarrow\infty} a_n=b$, then $a=b$.
Proof:
Let $\epsilon>0$. Since $\lim\limits_{n\rightarrow\infty} a_n=a$ and $\lim\limits_{n\rightarrow\infty} a_n=b$, we can have $\vert a_n-a\vert<\epsilon$ and $\vert a_n-b\vert<\epsilon$.
Then add $\vert a_n-a\vert<\epsilon$ and $\vert a_n-b\vert<\epsilon$, we have $$\vert a_n-a\vert+\vert a_n-b\vert<2\epsilon$$ and this is equivalent to $$\vert a_n-a\vert+\vert b-a_n\vert<2\epsilon$$ Applying the triangle inequality, we can have $$\vert (a_n-a)\vert-\vert(b-a_n)\vert\leq\vert (a_n-a)+(b-a_n)\vert\leq\vert a_n-a\vert+\vert b-a_n\vert$$ $$\Longrightarrow\vert (a_n-a)\vert-\vert(b-a_n)\vert\leq\vert b-a\vert\leq\vert a_n-a\vert+\vert b-a_n\vert\tag1$$
so $0\leq\vert b-a\vert$ and implies $a=b\tag2$
From $(1)$ to $(2)$, I am not sure correct or not. But it seems right to me because the greater equal site can imply $0=\vert b-a\vert$.
Can anyone check my solution? If that is not right, please give me a hit or suggestion to write a better one. (I seen a solution by using contraction)
Very nice start to the proof! There are some things a little shady with the proof, but the most important point I want to make is this:
When you are writing proofs, you should try to tell the reader a story. When I read your proof, I feel like you are trying to conform to some type of proof template you have in your mind. Proofs don't have to follow a specific structure or style -- you can use a lot of words in your proof! The only thing that must be true about your proof is that each step logically follows from the previous one. With that said, let me tell you how I would have written the proof of this -- I am writing this proof off of the top of my head because my goal is just to tell you a story of how I understand each step (that's what a proof should do -- tell the reader how you understand each step).
Proof
I want to prove if $a$ and $b$ are real numbers, and $a_{n}$ is a sequence such that $\lim \limits_{n \to \infty} a_{n} = a$ and $\lim \limits_{n \to \infty} a_{n} = b$, then $a = b$.
Well, to show that $a = b$, I can show that $|a - b| = 0$, since if $x$ is a real number, then $|x| = 0$ is equivalent to $x = 0$. So, I will show that $|a-b| = 0$ (which means I need to start playing around with $|a-b|$ to show this).
But for each natural number $n$, $|a - b| = |a - a_{n} + a_{n} - b| \leq |a - a_{n}| + |a_{n} - b|$ (by the triangle inequality).
But now I know $\lim \limits_{n \to \infty} a_{n} = a$, so that means for any $\epsilon > 0$, I can find some $N$ such that $n \geq N$ implies $|a - a_{n}| < \frac{\epsilon}{2}$.
Similarly, since I know $\lim \limits_{n \to \infty} a_{n} = b$, that means I can $N'$ such that $n \geq N'$ implies $|a_{n} - b| < \frac{\epsilon}{2}$.
Then, if I take $M = \max \{N, N'\}$, then if $n \geq M$, we have both $|a_{n} - a| < \frac{\epsilon}{2}$ and $|b -a_{n}| < \frac{\epsilon}{2}$.
Since I showed above $|a - b| \leq |a - a_{n}| + |a_{n} - b|$ for every $n \in \Bbb N$, that means the inequality is certainly true if $n \geq M$. But if $n \geq M$, then the inequality implies $|a - b| < \epsilon$. But $\epsilon$ was arbitrary! So, since $|a-b| < \epsilon$ for every $\epsilon > 0$, that means $|a - b| = 0$, so $a = b$.