Hello!
When using Mathematica 9, I encounter the following problem:
Assuming[p == -1, ComplexInfinity^p]<BR>
Infinity::indet: Indeterminate expression ComplexInfinity^p encountered. >>
but
ComplexInfinity^(-1)<BR>
0
Is there any way I can tell Mathematica to evaluate ComplexInfinity^p as 0 when assuming p<0? The same problem also arises in FullSimplify, for example when considering the generalized mean of 0 and 2,
FullSimplify[(0^p + 2^p)^(1/p), p < 0]<BR>
Indeterminate
Any suggestions would be much appreciated.