[Math] Understanding relation between Product and Summation Notation

algorithmspochhammer-symbolproductsstirling-numberssummation

So I am given the following:

$n = \sum_{i=1}^{k}m_{i}$

I am also given

$x = \sum_{i=1}^{k}log(m_{i}) = log\prod_{i=1}^{k}m_{i}$

I was only given the first part, however I believe that is a valid substitution and feel it may be of some value. I was hoping that there was a way to solve for $x$ in terms of $n$ and/or $k$. This is for a larger problem, however I am not sure how to tackle this part of it. I am not very familiar with $\prod$ identities or $\sum$ identities.

If anyone had any thoughts it would be much appreciated. Wolfram mentioned something about Log[Pochhammer[1, k]], however, I am not sure how to make sense of this. Thank you!

EDIT: Would it be safe to say that $m\log m = \log (m!) = \log\prod_{i=1}^{k}m_{i}$ ? If so, then I believe my problem is solvable from there.

Best Answer

Firstly you have that $$\log (m_1\cdot m_2)= \log m_1 + \log m_2$$ Generalizing for $k$ elements you have that $$\log \prod_{i=1}^{k} m_i=\sum_{i=1}^{k}\log m_i$$ which reads "the logarithm of the product is the sum of the logarithms". Secondly, you have that $$\log m^a=a \log m$$ So in your case $$m \log m=\log m^m \neq \log m! \neq \prod_{i=1}^{k} m_i$$ which means that the implication that you have in your EDIT does not hold.

Related Question