Originally posted by Shinobiku
I don't really like the stuff i came up w/, I've asked some ppl at my college, as well as tested it in mathematica using different methods and this is what I've come up w/:
I'm just going to post here what i just posted in my other forum.
I've talked w/ a friend of mine who is a math major (senior), and he likes to think of it as any number to the 0 power is the same as that number divided by itself, so
a^1/a^1 = a^(1-1) = a^0
but in the case of zero, 0^1/0^1 is already indeterminate.
That's one way to look at it. And then i went ahead and plugged a few things into mathematica:
In[2]:=[/color] 0^0
Power::indet : Indeterminate expression 0.^0. encountered.[/color]
Out[2]=[/color] Indeterminate
In[3]:=[/color] Limit[x^x, x->0]
Out[3]=[/color] 1
In[4]:=[/color] Table[{n,n^n},{n,.1,0,-.01}]//TableForm
Out[4]//TableForm=[/color]
0.10 0.794328
0.09 0.805159
0.08 0.817047
0.07 0.830151
0.06 0.844674
0.05 0.860892
0.04 0.879189
0.03 0.900147
0.02 0.924742
0.01 0.954993
0.00 Indeterminate
So, from those 3 methods, it seems that it is apporoaching 1 as a solution