1

When proving that $$\lim_{x \to 0} f(x)=\lim_{x \to 0}f(x^3)$$ does it suffice to show that as $x \to 0, x^3 \to 0$ ? If so then by the epsilon-delta proof we have:$\lim_{x \to 0} x^3=0$

$|x^3-0|=|x|^3<ε$ $\implies$ $|x|<\frac {ε}{x^2}$. Suppose we want $|x-0|<1 \iff 0<x^2<1 \iff \frac{1}{x^2}>1$.

Is this so far correct? If so then how do we proceed to find the proper δ?

Teh Rod
  • 3,108
  • 1
    For every $\epsilon$, there is a $\delta$. Then for every $\epsilon^3$ there is a $\delta$. –  Feb 01 '17 at 14:25

1 Answers1

0

Yes, it would suffice to show that $\lim_{x\to 0} x^3 = 0$ and use a theorem about the limit of the composition of continuous functions. A $\delta-\epsilon$ proof would go something like this:

Suppose $\lim_{x\to 0} f(x) = L$ where $L$ is finite. Let $\epsilon > 0$. Then by the definition of the limit, there is a $\hat\delta > 0$ such that for all $x$ satisfying $|x| < \hat\delta$, we have $|f(x) - L|<\epsilon$. Set $\delta = (\hat\delta)^{1/3} > 0$. Then if $|x| < \delta = \hat\delta^{1/3}$, $|x^3|<\hat\delta$, so $|f(x^3) - L| < \epsilon$, hence $\lim_{x\to 0} f(x^3) = L$.

  • Thank you. Do you know where I can find similar properties for inequalities like the one used here? (If $a,b>0, a<b \implies a^3<b^3$) – Zero Pancakes Feb 01 '17 at 21:33
  • That is a property of strictly increasing functions like $x^3$. http://mathworld.wolfram.com/StrictlyIncreasingFunction.html

    Another property that is often used is the triangle inequality $|a+b| \leq |a| + |b|$. https://en.wikipedia.org/wiki/Triangle_inequality

    Not sure I know of a good source for other inequalities, but maybe someone else could point to one.

    – Jonathan Hahn Feb 02 '17 at 21:32