0
What is exponentiation?
i need a clear explanation
3 odpowiedzi
+ 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
+ 1
simply raising a number to the power of another.
In python: 2 ** 2 = 4
In Java: Math.Pow(2, 3) = 8
etc
etc
0
Exponentiation is nothing but raising powers.
We usually represent these this way: 2³ or 2^3. In python, we use 2**3.