3

So I saw exponents like $3^0$ and $4^0$, etc which are all equal to $1$.

And then soon I see that $0^0$ is not defined.

I checked the graph of $x^0$

This is the graph:

Then I decided to make some observations.

We go like this:

$0.9^{0.9} = 0.909532576$

$0.8^{0.8} = 0.836511642$

$0.7^{0.7} = 0.779055912$

$0.6^{0.6} = 0.73602192281$

$0.5^{0.5} = 0.70710678118$

$0.4^{0.4} = 0.69314484315$

And then comes the moment:

$0.3^{0.3} = 0.69684530193$

And then, so on the values increase, and then finally the calculator breaks at $0.00000000000001^{0.000000000000001}$ and gives $1$.

I'd like to understand why $0.3^{0.3}$ is greater than $0.4^{0.4}$. And why the values go on increasing as we go $<0.3$.

So we get $\lim_{x\to 0} x^{x} = 1$.

Another amazing graph:

enter image description here

This thing has really intrigued me, and I wonder if there are more ways to prove that $0^0$ is undefined. Sharing more methods for the same would be highly appreciated!

  • The minimum is at $1/e$, as a simple differentiation shows. – user10354138 Feb 28 '21 at 12:33
  • Do you know about logarithms? – Sebastian Monnet Feb 28 '21 at 12:48
  • 2
    I think that "$0^0$ is undefined (or not)" is not a matter of proving. You can decide that $0^0$ is undefined and I do not exclude that there situations in which that is a wise decision. Also there are situations in which it is wise to decide that $0^0$ is a number that equals $1$. Actually an empty product and in that sense an element that is neutral wrt multiplication. – drhab Feb 28 '21 at 12:52
  • Did you check the graph of $0^x$ (for $x>0$?) – player3236 Feb 28 '21 at 12:55
  • 1
    Also in set-theory if you identify $0$ with the empty set and $A^B$ with the set of functions $B\to A$ then $0^0={0}=1$. – drhab Feb 28 '21 at 12:57
  • For me $0^x$ is the positive $x$-axis. Anyway more discussion here: https://math.stackexchange.com/questions/11150/ – player3236 Feb 28 '21 at 13:06
  • 1
    Although not all mathematicians would agree $$\lim_{x\rightarrow 0+0}x^x=1$$ is a good argument for the definition $0^0:=1$. In combinatorics this is a useful definition consistent with many important formulas and most math programs use it as well. Nevertheless, there is no convention about the assignment and in fact, if we use $0^x$, we would get limit $0$ , but $x^x$ seems to be a much more natural choice. – Peter Feb 28 '21 at 13:44

2 Answers2

0

I don't entirely agree that $0^0$ "is not defined". By definition of "define", you can define something to be whatever you want... some definitions turn out to be more helpful than others, though. There are lots of things in mathematics that are defined in some contexts and not in others. For instance, you will often have heard that something like $\frac{1}{0}$ is undefined, and that it would be absurd to assign it any value. However, in many areas of mathematics, it makes perfect sense to "invent" some thing $\infty$ that equals precisely $\frac{1}{0}$. When we do this, we have to be precise about what properties our new thing has, so as to avoid making logical errors.

This Wikipedia page for $0^0$ tells us that "The most common possibilities are 1 or leaving the expression undefined". As you have demonstrated in the question, $1$ does indeed seem the most reasonable choice if we do want to define it.

For the sake of completeness, I will also include an informal proof that the limit of $x^x$ as $x$ tends to $0$ from above is indeed $1$. We will use standard properties of the natural logarithm $\log$. For any positive real $x$, we have $$ x^x = e^{\log(x^x)} = e^{x\log x}, $$ and therefore it suffices to show that $x\log x \to 0$ as $x\to 0^+$. To see this, consider the sequence $(\frac{1}{n})_{n\geq 1}$. We have $$ \frac{1}{n}\log(\frac{1}{n}) = -\frac{1}{n}\log(n), $$ which converges to $0$ as $n\to \infty$ (I won't prove this but it follows from elementary properties of logarithms, and you can probably Google it). Therefore, since $x\log x$ is continuous for $x>0$ and $\frac{1}{n}\to 0$ as $n\to \infty$, we have $x\log x \to 0$ as $x \to 0^+$ as required.

0

I'd like to understand why $0.3^{0.3}$ is greater than $0.4^{0.4}$. And why the values go on increasing as we go $<0.3$.

As mentioned in the comments you can set the derivative equal to zero to obtain the extreme point. Let $f(x)=x^x, >0$

$\ln(f(x))=x\cdot \ln(x)$

Differentiating. On the left side we use the chain rule.

$\frac1{f(x)}\cdot f'(x)=\ln(x)+1$

$f'(x)=f(x)\cdot (\ln(x)+1)$

$f'(x)=x^x\cdot (\ln(x)+1)$

Setting the derivative equal to zero.

$=x^x\cdot (\ln(x)+1)=0\Rightarrow \ln(x)+1=0$

$\ln(x)=-1\Rightarrow x_E=\frac1e$. And you see that $0.3<\frac1e<0.4$

It remains to show that this extreme point is a (relative) minimum. So we need the second derivative. Using the product rule and we get

$f''(x)=x^x\cdot \left(\frac1x+(\ln(x)+1)^2\right)$

$f''\left(\frac1e\right)>0 \Rightarrow x_E=\frac1e$ is a (relative) minimum.

callculus42
  • 30,550