You're posts sound a little confused to it's hard to offer much.I assume by "compute" you mean "find a decimal approximation". In this sense, computing real exponentiation a^b is not a problem. It can be done straightforwardly from
a^b = e^{b \ln a}
The logarithm is easy to compute because
\ln (m \cdot 2^n) = \ln m + n \ln 2
Nothing in the right hand side poses difficulty.
The taylor series for y = e^x is really good, so it's only a problem to compute if x has large magnitude. (And if it's negative, it's only a problem if "zero" is not accurate enough of an answer)
But Newton's method comes to our rescue: we use it to find a root of f(y) = \ln x - y (this root will satisfy y = e^x).
This works by starting with, say, y_0=1 and iterating:
y_{n+1} = y_n (1 + x - \ln y_n)
For negative x, though, you need to start with a y_0 near zero.
People have done a
lot of work on methods for quickly and accurately computing classical functions like logarithms and exponentials. I assume it shouldn't be too hard to find materials on the topic via google search...