vote up 3 vote down star
3

Hi folks,

I was wondering if it's possible to calculate the average of some numbers if i have this:

int currentCount = 12;
float currentScore = 6.1123   (this is a range of 1 <-> 10).

now .. if i receive another score .. lets say .. 4.5 ... can i recalc the average so it would be something like ...

int currentCount now equals 13
float currentScore now equals ?????

or is this impossible and i still need to remember the list of scores.

flag

75% accept rate

7 Answers

vote up 16 vote down check

The following formulas allow you to track averages just from stored average and count, as you requested.

currentScore = (currentScore * currentCount + newValue) / (currentCount + 1)
currentCount = currentCount + 1

This relies on the fact that your average is currently your sum divided by the count. So you simply multiply count by average to get the sum, add your new value and divide by (count+1), then increase count.

So, let's say you have the data {7,9,11,1} and the only thing you're keeping is the average and count. As each number is added, you get:

+--------+-------+------------------+----------------------+
| Number | Count |   Actual average | Calculated average   |
+--------+-------+------------------+----------------------+
|      7 |     1 | (7)/1        = 7 | (0 * 0 +  7) / 1 = 7 |
|      9 |     2 | (7+9)/2      = 8 | (7 * 1 +  9) / 2 = 8 |
|     11 |     3 | (7+9+11)/3   = 9 | (8 * 2 + 11) / 3 = 9 |
|      1 |     4 | (7+9+11+1)/4 = 7 | (9 * 3 +  1) / 4 = 7 |
+--------+-------+------------------+----------------------+
link|flag
Shouldn't that be currentScore = (currentScore * currentCount + 4.5) / (currentCount + 1) – John the Statistician Dec 4 '08 at 12:17
Thanks, @John, wasn't thinking straight. – paxdiablo Dec 4 '08 at 12:18
No worries, it's an easy mistake to make – John the Statistician Dec 4 '08 at 12:21
Perfect! i confirmed this using google docs with 16 or so numbers, then added a 17 number and got the average. double checked with the formula above and it's identical .. all the way down to the 12 or so decimal place. Awesomesauce! (i didn't think it was going to be possible or that simple) :P – Pure.Krome Dec 4 '08 at 12:48
Awesomesauce ??? That's sound like my 4yo (easy peasy, lemon squeezy) :-) – paxdiablo Dec 4 '08 at 12:54
show 6 more comments
vote up 0 vote down

This is a very good source for basic math and algebra:

http://www.purplemath.com/modules/index.htm

link|flag
vote up 2 vote down

or... if you want to be silly, you can do it in one line :

 current_average = (current_sum = current_sum + newValue) / ++current_count;

:)

link|flag
Does it make any difference if i do ++current_count vs current_count++ ?? – Pure.Krome Dec 4 '08 at 13:22
Yes. One increments current_count before calculating current_average, the other does it after. – slim Dec 4 '08 at 13:27
so ++current_count increments BEFORE the division is done, wile current_count++ is incremented AFTER the division? ouch! just by looking at the code, i would have thought it would have been... "and divide the left side by the right side which is (current count + 1). Glad i asked! – Pure.Krome Dec 4 '08 at 22:41
That is true in C or C++. But not in Java. The answer will vary by language! – sharth Oct 28 at 21:36
vote up 3 vote down

It's quite easy really, when you look at the formula for the average: A1 + A2 + ... + AN/N. Now, If you have the old average and the N (numbers count) you can easily calculate the new average:

newScore = (currentScore * currentCount + someNewValue)/(currentCount + 1)
link|flag
vote up 1 vote down

float currentScore now equals (currentScore * (currentCount-1) + 4.5)/currentCount ?

link|flag
vote up 2 vote down

You can store currentCount and sumScore and you calculate sumScore/currentCount.

link|flag
vote up 14 vote down

I like to store the sum and the count. It avoids an extra multiply each time.

current_sum += input;
current_count++;
current_average = current_sum/current_count;
link|flag
That's a good point about maintaining the sum, especially if you can defer the averaging until you summed ALL the numbers. – paxdiablo Dec 4 '08 at 12:22
But we shouldn't turn this into a mutual admiration society :-) – paxdiablo Dec 4 '08 at 12:23
Exactly; in general you can calculate the nth moment with sums of powers. For example, you can calculate the std.dev. with sums of squares, sums, and count. However, if you need a streaming std. dev. don't do that, do this: cs.berkeley.edu/~mhoemmen/cs194-fall2007/… – John the Statistician Dec 4 '08 at 12:26
Wow, you really ARE a statistician, +1. – paxdiablo Dec 4 '08 at 12:55
And you have great hair! Oh sorry. We decided not to have a mutual admiration society... – slim Dec 4 '08 at 13:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.