answersLogoWhite

0


Best Answer

20 = 1

Consider what is the value of 2a ÷ 2a? Any number divided by itself is 1. Thus:

2a ÷ 2a = 1

The law of indices says that when dividing, they are subtracted, for example:

25 ÷ 22 = (2 x 2 x 2 x 2 x 2) ÷ (2 x 2) = 2 x 2 x 2 = 23 = 25-2

So 2a ÷ 2a is (also):

2a ÷ 2a = 2a-a = 20

Since any number subtracted from itself is 0 (= a - a). This must have the same value as before, thus:

20 = 1

The 2 above can be replaced by any number x which means that any number to the power 0 is 1:

x0 = 1

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is 2 to the power of 0 why?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is 0 to the power of 2?

0 to the power of -2 = -2


What is 0 to the power 2 equal to?

0 to the power of 2 is 0, because to times 0 equals 0.


What is the answer to 0 to the power of 2?

0 to any power is 0.


What is 2 to the power of 0 equal to?

Any number to the power of 0 equals 1.Therefore 2 to the power of 0 = 1


What is 2 to the power 0 equal to?

2 to the power 0 or 20 is equal to 1


What is the value of 0 to the power -2?

2


What is the answer to -2 to the power of 0?

1 anything to the power of 0 is 1


What is 2 to the power of 0 times 10 the power of the 0?

Any value raised to the power 'zero'(0) equals '1'. Hence 2^(0) = 1 10 ^(0) = 1 Hence 2^(0) X 10^(0) = 1 x 1 = 1 the answer.


Is 10 to the 0 power equal to 2 to the 0 power?

Yes, everything to the power of 0 equals 1.


What is 2 to the power of 3 plus 2 to the power of 0?

9 is.


How can you rewrite the number 1 as 2 to a power?

To rewrite the number 1 as 2 to a power, you would need to express it as 2^0. In exponential form, any number raised to the power of 0 is equal to 1. Therefore, 1 can be rewritten as 2^0.


Give a one-line C expression to test whether a number is a power of 2?

The one line expression is: ((0 != n) && !(n & n-1)) example: int main () { for (int n = 0; n <= 1000001; ++n) { if ((0 != n) && !(n & n-1)) cout << n << " is a power of 2" << endl; } return 0; } will produce: 1 is a power of 2 2 is a power of 2 4 is a power of 2 8 is a power of 2 16 is a power of 2 32 is a power of 2 64 is a power of 2 128 is a power of 2 256 is a power of 2 512 is a power of 2 1024 is a power of 2 2048 is a power of 2 4096 is a power of 2 8192 is a power of 2 16384 is a power of 2 32768 is a power of 2 65536 is a power of 2 131072 is a power of 2 262144 is a power of 2 524288 is a power of 2