What is exponentiation? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is exponentiation?

i need a clear explanation

17th Aug 2018, 7:50 AM
Naveen Kumar
3 Answers
+ 1
when you raise a number to a certain power, it equates to multiplying that number by itself that amount of times example: 2³ = 2*2*2 = 8 4³ = 4*4*4 = 64
17th Aug 2018, 8:19 AM
hinanawi
hinanawi - avatar
+ 1
simply raising a number to the power of another. In python: 2 ** 2 = 4 In Java: Math.Pow(2, 3) = 8 etc etc
19th Aug 2018, 8:23 AM
Charlie
0
Exponentiation is nothing but raising powers. We usually represent these this way: 2³ or 2^3. In python, we use 2**3.
26th Aug 2018, 5:00 PM
Krishna Moorthy
Krishna Moorthy - avatar