Big sum and big product
In statistics, we use the big sum ∑ and big product ∏ notation a lot to compactly express the sum and product over multiple variables/parameters. For this reason, it might be worth to go over what exactly these things mean.
Say we are summing three numbers
x1+x2+x3
Another way of writing this more compactly is:
3∑i=1xi
This notation implies that the subscript i takes on the value of 1, 2, and 3. While you may not see much of an advantage of doing this in this example, imagine if we were summing 100 numbers. This would be simple using this latter notation:
100∑i=1xi
Here, our expression implies that the subscript i takes on the value of 1, 2, …, 100. As you can imagine, explicitly writing each element of the sum would be daunting.
The big product sign is the equivalent of the big sum sign but for multiplication. Say we are multiplying three numbers:
y1×y2×y3
This can be written as:
3∏i=1yi
Comments?
Send me an email at