Exponentiation

T

Tom Finn

I am trying to reproduce this function in another program
and am looking for an explanation of it and what it does.
Thanks Tom Finn
 
D

Dave Peterson

You mean like:

=3^5

The 5 is the exponent and it means to use the base (3) as a factor 5 times:

=3*3*3*3*3
=243

If you mean
=exp(3)
this means to use 2.718... as a a factor 3 time:

=2.718^3

You can look at excel's help for Power (=3^5 can be written as =power(3,5), too)
and you'll find some info for =exp() in help, too.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top