| Line 1: |
Line 1: |
| − | <div style="font-size:30px">'''POWER(n,p)'''</div><br/> | + | <div style="font-size:30px">'''POWER (Number,Power)'''</div><br/> |
| − | *<math>n</math> is the base value | + | *<math>Number</math> is the base value. |
| − | *<math>p </math> is the power value | + | *<math>Power</math> is the power value. |
| | + | **POWER(),returns the result of a number raised to a power. |
| | | | |
| | ==Description== | | ==Description== |
| Line 7: |
Line 8: |
| | *The power of a number indicating how many times we have to multiply the number. | | *The power of a number indicating how many times we have to multiply the number. |
| | *For e.g =POWER(4,3) = 4*4*4 = 63. | | *For e.g =POWER(4,3) = 4*4*4 = 63. |
| − | *In <math> POWER(n,p)</math>, <math>n</math> is the base value. It can be + or - . | + | *In <math> POWER(Number,Power)</math>, <math>Number</math> is the base value. It can be + or - . |
| − | *<math> p </math> is the power(exponent) value to which the <math>n</math> is raised. | + | *<math> Power </math> is the power(exponent) value to which the <math>Number</math> is raised. |
| | *Power is also called Exponents or Indices. | | *Power is also called Exponents or Indices. |
| | *Anything raised to the power 0 is equal to 1. i.e. POWER(7,0) = 1. | | *Anything raised to the power 0 is equal to 1. i.e. POWER(7,0) = 1. |