Product Operator

The product operator denoted with the mathematical symbol Π is similar to the summation operator, but instead of summing elements, it multiplies them. The general form of the product operator is:

i=0nxi=x1×x2×x3××xni=index of product operatorn=upper limit of product operator

Translating to Code

In code, the product operator can be implemented using a for loop, where you multiply the elements in each iteration.

float product = 1;
float[] x;
int n = x.Length;

for (int i = 0; i <= n; i++)
{
    product *= x[i];
}

Let's take a simple example:

P=i=15i=12345=120=5!
float product = 1;
int n = 5;

for (int i = 1; i <= n; i++)
{
    product *= i;
}

Often, we need to compute the product of a function applied to a sequence of elements. For example:

P=i=0nf(xi)=f(x0)f(x1)f(xn)
float product = 1;
float[] x;
int n = x.Length;

for (int i = 0; i < n; i++)
{
    float hitDamage = x[i];
    
    product *= CalculateComboScore(hitDamage);
}

Console.WriteLine("Total Combo Score: " + product);

Additional Resources

For more learning on the topic: