+0  
 
0
970
2
avatar
find the standard deviation and mean of the numbers 5, 7, 2, 4, 9, 3,
 Jun 1, 2012
 #1
avatar+30 
0
I've never encountered the term 'standard deviation', but mean is:

[input](5+7+2+4+9+3)/6[/input]
 Jun 4, 2012
 #2
avatar+3146 
0
[input]data=(5, 7, 2, 4, 9, 3); xs=sum(data[x],x=1..6)/6; sqrt( 1/(6-1)* sum( (data[x]-xs)^2 ,x=1..6) )[/input]
 Jun 4, 2012

1 Online Users