I am reading the proof of $\mathbb{E}[x]=\mathbf{\mu}$ for a Gausssian Multivariate distribution from PRML by Bishop (2006 edition) given at page 82 chapter 2. I am not able to derive the steps after equation (2.58) to reach equation (2.59). Specifically, equation (2.58) given as:
$\mathbb{E}[x] = \frac{1}{(2\pi)^{D/2}}\frac{1}{|\mathbf{\Sigma}|^{1/2}} \int exp\left\{-\frac{1}{2} \mathbf{z}^{T} \mathbf{\Sigma}^{-1} \mathbf{z} \right\}(\mathbf{z} + \mathbf{\mu})d\mathbf{z}$
I can see that the exponential function is an even function, but how does the author claim that the term in $\mathbf{z}$ in the factor $(\mathbf{z} + \mathbf{\mu})$ will vanish by symmetry? I maybe over looking at a very obvious point, but I am stuck at this for quite some time. Any direction would be helpful.
If you expand the equation, you get:
$$ \begin{align} \mathbb{E}[x] &= \frac{1}{(2\pi)^{D/2}} \frac{1}{|\Sigma|^{1/2}} \int \exp \big( -\frac{1}{2} Z^T \Sigma^{-1} Z \big) (Z + \mu) dZ \\ &= \frac{1}{(2\pi)^{D/2}} \frac{1}{|\Sigma|^{1/2}} \int Z \exp \big(-\frac{1}{2} Z^T \Sigma^{-1} Z \big) + \mu \exp \big(-\frac{1}{2} Z^T \Sigma^{-1} Z \big) dZ \end{align} $$
If you look at the expression $f(Z) = Z \exp \big(-\frac{1}{2} Z^T \Sigma^{-1} Z \big)$, we can see that this is an odd function because
$$ \begin{align} f(-Z) &= (-Z) \exp \big( -\frac{1}{2} (-Z^T) (\Sigma^{-1})(-Z) \big) \\ &= -Z \exp \big(-\frac{1}{2} Z^T \Sigma^{-1} Z \big) \\ &= - f(Z) \end{align} $$
Therefore the integrand of that expression will be zero because it is an odd function. I believe that this is how the author claims that the $Z$ in the factor $(Z + \mu)$ will vanish by symmetry.