So as I've solved various problems regarding epsilon-delta proof, I have faced several questions where I had to kind of implement this process:
So here's one of them:
$\lim_{x\rightarrow 1} (x^3+x+1) = 3 $
So I started off saying,
Let $\epsilon$ > 0 be given. We want to find $\delta$ > 0 s.t. if 0 < $|x-1|$ < $\delta$, then $|x^3+x+2| < \epsilon$.
$|x^3+x+2| = |(x-1)(x-1)(x+2)|$ ..... (a)
(Here comes the part! )
Let $\delta < 1, $ ... (b)
$ |x-1| < 1$
$-1 < x-1 < 1$
$1 < x + 2 < 3$
$x + 2 < 3$
Apply to the part (a), $<(x-1)\times 1 \times 3 < \delta \times 3 = \epsilon$
$\delta = \epsilon/3$
$\delta = min(1, \epsilon/3)$.
and the proof follows...
So my question is what is the standard of choosing n in part (b) Let $\delta < n$?
Sometimes they choose $\frac{1}{2}$ or $\frac{1}{4}$ for n, and sometimes 1. For this case, my answer sheet specifically chose $\frac{1}{2}$ for n and I have no idea why.
The key idea is to pick it to be sufficiently small, avoiding technical singularity, aim for simplicity to achieve your goal.
$1$ is a popular choice but it need not work all the time. We need to pick it to be small enough to have control over the whole function.
For example, if you want to prove that $$\lim_{x \to 0.5}\frac1x=2$$
For any $\epsilon >0$, we want to show that we can find $\delta >0$, such that if $0<|x-0.5|<\delta$, then $|\frac1x-2|<\epsilon$.
To get ideas on how to pick $\delta$, I would work backward on a draft paper and write stuff like $$\frac{|1-2x|}{|x|}<\epsilon$$
If $|x-0.5|<\delta$, then $|1-2x|<2\delta$, that is we know how to bound the numerator.
For denominator, we want to make things simpler and we try to bound $\frac1x$ by a positive number. If we insist that $|x-0.5|<1$, then it is possible that $x=0$, and we know there is a singularity. Hence, avoid it by picking a smaller number, say pick $|x-0.5|<0.25$, then $0.25<x < 0.75$, then $\frac1{|x|}<4$
Hence, we can pick $\delta = \min\left(\frac14, \frac{\epsilon}8 \right)$, then
$$\frac{|1-2x|}{|x|}<8\delta \le \epsilon.$$