kaskus
- 4
- 0
why why why why ??
Can you explain me why 0^0=1 but 0^1=0 ??

Can you explain me why 0^0=1 but 0^1=0 ??

The discussion revolves around the mathematical expression 0^0, exploring why it is often considered equal to 1 in some contexts while 0^1 is equal to 0. Participants examine the definitions, implications, and varying interpretations of these expressions across different mathematical frameworks, including real numbers, cardinal numbers, and discrete mathematics.
Participants do not reach a consensus on the definition of 0^0, with multiple competing views remaining. Some assert it is undefined, while others support its definition as 1 in certain contexts.
The discussion reveals limitations in definitions and assumptions regarding 0^0, particularly in distinguishing between contexts such as real numbers and cardinal numbers. The treatment of 0^0 as an indeterminate form is also noted, with unresolved mathematical steps regarding limits and function behavior.

Dragonfall said:0^0 is undefined. It's not equal to 1.
g_edgar said:On the other hand, for cardinal numbers, say 0, we get 0^0 = 1 since there is exactly one function from the empty set to itself.
Dragonfall said:There is no function from the empty set to itself, if we don't allow the empty set to be a function.
Dragonfall said:Calculator is wrong. Well, it's not completely right. 0^0 is undefined in general, and in very specific cases which people have pointed out, it may be 0 or 1 or whatever.
kaskus said:i don't believe that calculator is wrong
can you explain me![]()
In lots of places in math we say 0^0=1 as abuse of notation. It is a very convenient abuse of notation, but abuse nonetheless. For example, this abuse of notation let's us write infinite series in the formJCVD said:in discrete math we like to say 0^0=1 ...
Whatever123 said:You can think of it as a division by zero, which is why it doesn't work... x^n/x^m = x^(n-m). Therefore, 0^0 = 0^x/0^x, which is, of course, 0/0 and in the indeterminate form...
> 0^0
%1 = 1
> 0.0^0
%2 = 2
> 0^0.0
*** _^_: gpow: 0 to a non positive exponent.
> 0.0^0.0
*** _^_: gpow: 0 to a non positive exponent.
CR, can you explain that second result, %2=2?? Not the %2, I understand that. The right hand side, =2.CRGreathouse said:Here's Pari's opinion:
Code:> 0^0 %1 = 1 > 0.0^0 %2 = 2 > 0^0.0 *** _^_: gpow: 0 to a non positive exponent. > 0.0^0.0 *** _^_: gpow: 0 to a non positive exponent.