I have the equation that I want to prove the limit goes to 1:
$$\lim_{n \to \infty} \frac {(n+8)(n+1)}{n(n-10)} = 1$$
Using definition of limit, I get this equation:
$$ \left | \frac {(n+8)(n+1)}{n(n-10)} - 1 \right| \lt \epsilon $$
which I can manipulate into the following using: $ 1 = \frac {n^2 - 10n}{n^2-10n}$:
$$ \left | \frac {n^2 + 9n + 8 - n^2 + 10n}{n^2 - 10n} \right | = \left | \frac{19n + 8}{n^2 - 10n} \right | \lt \epsilon $$
Any suggestions on how to solve this for epsilon? Sorry if this is simple, but I am not sure what concept to search for.
References or suggestions about what to search are also welcome.
I assume you have to use the $\epsilon$-$N$ definition of the limit instead of other methods, correct?
If so, you shouldn't be trying to find an $\epsilon$.
For a given $\epsilon > 0$, you need to find an $N$ such that $\left|\dfrac{(n+8)(n+1)}{n(n-10)}-1\right| < \epsilon$ for all $n > N$.
So, you want $\left|\dfrac{19n+8}{n^2-10n}\right| < \epsilon$. Only large $n$ matter, so let's assume that $n > 20$.
Then, $\left|\dfrac{19n+8}{n^2-10n}\right| = \dfrac{19n+8}{n^2-10n} \le \dfrac{19n+n}{\tfrac{1}{2}n^2} = \dfrac{40}{n}$ (you want this to be less than $\epsilon$ for all $n > N$).
So, try picking $N = \dfrac{40}{\epsilon}$. Then, for all $n > N$, you have $\dfrac{40}{n} < \dfrac{40}{N} = \epsilon$ as you needed.
However, we assumed that $n > 20$ in order to bound $\left|\dfrac{19n+8}{n^2-10n}\right|$.
Thus, you need to pick something like $N = \max\left\{\dfrac{40}{\epsilon},20\right\}$ (this ensures that $N > 20$).
Now that you have found the value of $N$, you can write the proof.
EDIT: There was a small error in the above inequality, specifically $n^2-10n$ is not smaller than $n^2$. This can be fixed by assuming $n > 20$, which gives $n^2-10n > \tfrac{1}{2}n^2$. Thanks André Nicolas for catching that.