[Math] How to calculate a decimal power of a number

exponentiation

I wish to calculate a power like $$2.14 ^ {2.14}$$

When I ask my calculator to do it, I just get an answer, but I want to see the calculation.
So my question is, how to calculate this with a pen, paper and a bunch of brains.

Best Answer

For positive bases $a$, you have the general rule $$a^b = \exp(b\ln(a)) = e^{b\ln a}.$$

This follows from the fact that exponentials and logarithms are inverses of each other, and that the logarithm has the property that $$\ln(x^r) = r\ln(x).$$

So you have, for example, \begin{align*} (2.14)^{2.14} &= e^{\ln\left((2.14)^{2.14}\right)} &\quad&\mbox{(because $e^{\ln x}=x$)}\\ &= e^{(2.14)\ln(2.14)} &&\mbox{(because $\ln(x^r) = r\ln x$)} \end{align*} Or more generally, $$a^b = e^{\ln(a^b)} = e^{b\ln a}.$$

In fact, this is formula can be taken as the definition of $a^b$ for $a\gt 0$ and arbitrary exponent $b$ (that is, not an integer, not a rational).

As to computing $e^{2.14\ln(2.14)}$, there are reasonably good methods for approximating numbers like $\ln(2.14)$, and numbers like $e^r$ (e.g., Taylor polynomials or other methods).