What's Exponentiation ? Please teach me with understandable Example. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

What's Exponentiation ? Please teach me with understandable Example.

26th Feb 2017, 7:54 PM
Nirmal Kakati
Nirmal Kakati - avatar
3 Answers
+ 11
Exponentiation x**y is multiplying x number by itself y times. x**1 = x x**2 = x * x x**3 = x * x * x etc. x**y expression is also read 'x to the power of y'. That's why in some languages there is a pow() or power() method.
26th Feb 2017, 8:07 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 5
2**1 = 2 2**2 = 2*2 = 4 2**3 = 2*2*2 = 8 2**4 = 2*2*2*2 = 16
26th Feb 2017, 8:05 PM
Patricio López
Patricio López - avatar
+ 1
Oh my. Well, I was going to explain but I think it'll be best if you take a look at this site. http://www.mathsisfun.com/exponent.html
26th Feb 2017, 8:06 PM
Don
Don - avatar