I was wondering why there are different approaches to finding the existence of the limit for, say $\lim_{x \to a} x$, $\lim_{x \to a} x^2$, and $\lim_{x \to a} x^3$, if you can just cram lots of powers of $a$ in the denominator of $\delta$ instead. For example, to find
$$ \lim_{x \to a} x^n $$
in the restricted case $a > 1, n \ge 1$, I tried setting
$$ \delta = (1 + \epsilon / a^n)^{1/n} - 1 > 1^{1/n} - 1 = 0 $$
Since $a > 1$, so if $a < x$, $x - a < \delta \implies x < \delta + a$ and $a > x \implies x < a + \delta$, $$ 0 < |x-a| < \delta \implies x < a + \delta $$
Since $a > 1$, $$ |x^n - a^n| < |(a + \delta)^n - a^n| < |(a + a\delta)^n - a^n| = |a^n((1 + \delta)^n - 1)| $$
$$ |x^n - a^n| < |a^n((1 + (1 + \epsilon / a^n)^{1/n} - 1)^n - 1)| = |a^n((1 + \epsilon / a^n)^{1/n})^n - 1)| $$
$$ |x^n - a^n| < |a^n(1 + \epsilon/a^n - 1)| = |a^n(\epsilon / a^n)| = |\epsilon| $$
Since $\epsilon > 0$, $$ |x^n - a^n| < \epsilon $$
What I want to know is, is there a flaw in this proof? I feel like it can be extended pretty easily to $a < -1$, but is it much harder to find a suitable $\epsilon$ when $|a| < 1$? Or is the reason why nobody does this because the purpose of introducing epsilon-delta proofs is to formalize the definition of a limit, and so there's no point in actually calculating anything beyond $lim_{x \to a} x$?