Pi (Π\Pi) Notation

The capital Greek letter Pi (Π\Pi) is utilized similarily to Σ\Sigma notation, but instead of summation, the product of the terms is computed. For example, below the start, stop, and term are defined as three constants: 1, 4, and 5 respectively:

145=5555\displaystyle\prod\limits_{1}^{4} 5 = 5\cdot5\cdot5\cdot5

Likewise, we can define variables to the start, stop and term:

n=03(n+x)=(0+x)(1+x)(2+x)(3+x)\displaystyle\prod\limits_{n=0}^{3}(n + x) = (0+x)(1+x)(2+x)(3+x)

Here we see a variable start and stop, as well as a term that contains a yet undefined variable xx. Since we do not know what value(s) xx should take, we evaluate the \prod as far as possible. That is, we apply algebraic simplification if possible.

Finally, \prod notation is able to nest, just like \sum notation. For example:

i=12j=242ij=(2i122i232i34)(2i222i232i24)\displaystyle\prod\limits_{i=1}^{2}\displaystyle\prod\limits_{j=2}^{4}2ij = (2i_{1}*2 * 2i_{2}*3 * 2i_{3}*4) * (2i_{2} * 2 * 2i_{2} * 3 * 2i_{2} * 4)

=(22)(23)(24)(42)(43)(24) = (2*2)(2*3)(2*4)(4*2)(4*3)(2*4)

Factorials

While looking at \prod notation, it is also timely to take a brief detour to look at factorials of non-negative integers:

5!5!

3!3!

20!20!

or more generally:

n!n!

This notation simply translates to: take the product of all positive integers less than or equal to nn. For example:

5!=(1)(2)(3)(4)(5)5! = (1)(2)(3)(4)(5)

The aside is timely, because we can write the factorial using \prod notation. I am intentionally not going to demonstrate how to do this as it will be a question on the weekly assignment. As a hint, remember that we can utilize a variable in the start and then reuse that variable in the term.