Exponential equations

G

Gord Dibben

Use the Caret found on 6 key above qwerty keys

=2^2 for squared

=2^3 for cubed

=2^1.7


Gord Dibben MS Excel MVP
 
J

Joel

General for of an exponential is

Y = (A*x^2) +( B*x^1) + C

putting in numbers

= (5 * (A1^2))+(2.4*(A1^1))+5.6
wher A1 is cell A1

You
 
R

Rick Rothstein \(MVP - VB\)

How do I enter and exponential equation in a cell?

Another possibility is to use the POWER function. Using references...

=POWER(A1,B2)

or using constants...

=POWER(3,5)

or you can use a combination of the two.

Rick
 
Top