Summation Operator
You may have seen the following mathematical symbol
Translating to Code
The summation operator is effectively just a for
loop where you take the sum of the elements in each iteration.
float sum = 0;
float[] x;
int n = x.Length;
for (int i=0, i<=n, i++)
{
sum += x[i];
}
However, although this is useful, we don't get a simple case like this all the time. We need to be able to adapt this for different summations. Let's take a look at the example:
float sum = 0;
int n = 10;
for (int i=0; i<=n; i++)
{
sum += i;
}
We are also often looking at more complex and general cases than this where you need to take the sum of a function. For example:
float sum = 0;
float[] x;
int n = x.Length;
for (int i=0; i<=n, i++)
{
float sillyStiringFuel = x[i];
sum += DispensedSillyString(sillyStiringFuel);
}
Console.WriteLine("Total Silly String Length: " + sum);
Additional Resources
For more learning on the topic: