When I use Simplify[]
or FullSimplify[]
, specifying domain reals, I get terms with $0^n$ as the coefficient. Isn't that always zero, and thus be simplified out? A example of input/output is below, with the expressions truncated/replaced since they are extremely long.
Input:
Assuming[Reals && c > 5 , FullSimplify[expression]]
Output:
$$
\int_0^1 i x... +0^{-1+c} \text{Hypergeometric2F1Regularized}\left[\frac{-1+c}{c},1-c i,2-\frac{1}{c},0^c\right]\ F'[x] \, dx
$$
Note, I added the assumption that $c >5$ as overkill to avoid any possible issue with raising 0 to a negative number (or zero), but it didn't help. (Also, note, the $i$ above is a variable, not the imaginary number). Does anyone know why this happens?
Assuming[Reals && c>5, FullSimplify[0^c]]
. If it doesn't simplify it then you know this is a case of Mathematica not being prepared to simplify a $0^c$ expression even with assumptions. – anon Aug 19 '11 at 19:37