[Math] How to find out the value of numbers having fractional powers

exponentiation

How to find out the value of numbers having fractional powers manually without using logarithms and calculators??
For example : $2^{1.6}, 3^{2.1}, 5^{3.22}$ etc, I know we can find out the value using logarithms. But I want to know how to find out the value manually. Calculators can easily find out the values. That means some logic should be built to find out the value. Please help me to know
this?

Best Answer

What D.L. gave as an answer is a good way which can be slightly improved for faster convergence of the series.

Suppose that we write $x=\lfloor x\rfloor+y$. So we could use $$a^x=a^{\lfloor x\rfloor }\sum_{n=0}^{\infty} \frac{(ln(a).y)^n}{n!}$$ This could be for $y<\frac{1}{2}$. Otherwise we should use $x=\lceil x\rceil-y$ and use $$a^x=a^{\lceil x\rceil}\sum_{n=0}^{\infty} \frac{(-ln(a).y)^n}{n!}$$ So, you have integer powers of $a$ and a very few logarithms to remember.