1

I have 1-n elements and I sum them up (I1+I2+I3...In)/N. Also for 5,5,8 the result is 6. I am not sure about the mathematical notation of the formula.

Mieros
  • 13

1 Answers1

2

It sounds like you just want notation for the average (the arithmetic mean, to be precise)?

$$\frac{1}{N} \sum_{k=1}^N I_k$$

Shane
  • 1,325