Exponential equations

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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
 
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
 
Back
Top