0

What is $\prod$ and how can I use it? I have seen it used under numerous occasions and on the Desmos graphing calculator keyboard-menu. I could not get it to work, and wanted some pointers.

player3236
  • 16,413

2 Answers2

4

As pointed out by multiple users above, this is the uppercase version of $\pi$ in the greek alphabet, and it usually means "product".

In Desmos, you use it like this, similar to the summation sign ($\Sigma$):

$$ \prod_{i=a}^b {c} $$

where $a$ is the lower bound (bound included), $b$ is the upper bound (bound included), and $c$ is the component to take the product of.

An example:

$$ \prod_{i=1}^{10} {(i+2)} = (1+2) \cdot(2+2) \cdot(3+2) \cdot(4+2) \cdot(5+2) \cdot(6+2) \cdot(7+2) \cdot(8+2) \cdot(9+2) \cdot(10+2)$$ $$ = 239500800 $$

Hope this helps.

3

The Greek "S" is $\Sigma$ is typically used for sum. Analogously, The greek capital "P" is $\Pi$ and is typically used for product. We can use it to index some collection of numbers that we wish to multiply together. Say for example I wish to define $n! = n \cdot (n-1)\cdot (n-2)...\cdot 2\cdot 1$. I could write this as $\Pi_{k=1}^n k$ which says that we take every integer value $k$ between $1$ and $n$ and multiply them together.

CyclotomicField
  • 11,018
  • 1
  • 12
  • 29