Questions tagged [standard-deviation]

In Probability and Statistics, the standard deviation of a statistical population or data set is a measure of how much variation or dispersion exists from its average value. It is defined as the square root of the variance. Use this tag alongside (statistics).

In Probability and Statistics, the standard deviation of a statistical population or data set is a measure of how much variation or dispersion exists from its average value. It is defined as the square root of the variance.

1426 questions
83
votes
8 answers

incremental computation of standard deviation

How can I compute the standard deviation in an incremental way (using the new value and the last computed mean and/or std deviation) ? for the non incremental way, I just do something…
58
votes
1 answer

Sample Standard Deviation vs. Population Standard Deviation

I have an HP 50g graphing calculator and I am using it to calculate the standard deviation of some data. In the statistics calculation there is a type which can have two values: Sample Population I didn't change it, but I kept getting the wrong…
Rafid
  • 1,128
50
votes
4 answers

Determining variance from sum of two random correlated variables

I understand that the variance of the sum of two independent normally distributed random variables is the sum of the variances, but how does this change when the two random variables are correlated?
40
votes
12 answers

Why is variance squared?

The mean absolute deviation is: $$\dfrac{\sum_{i=1}^{n}|x_i-\bar x|}{n}$$ The variance is: $$\dfrac{\sum_{i=1}^{n}(x_i-\bar x)^2}{n-1}$$ So the mean deviation and the variance are measuring the same thing, yet variance requires squaring the…
39
votes
6 answers

Motivation behind standard deviation?

Let's take the numbers 0-10. Their mean is 5, and the individual deviations from 5 are -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5 And so the average (magnitude of) deviation from the mean is $30/11 \approx 2.72$. However, this is not the standard…
39
votes
9 answers

Is it possible to have 2 different but equal size real number sets that have the same mean and standard deviation?

By inspection I notice that Shifting does not change the standard deviation but change mean. {1,3,4} has the same standard deviation as {11,13,14} for example. Sets with the same (or reversed) sequence of adjacent difference have the same standard…
Display Name
  • 2,713
31
votes
4 answers

How do I combine standard deviations of two groups?

I have 2 groups of people. I'm working with the data about their age. I know the means, the standard deviations and the number of people. I don't know the data of each person in the groups. Group 1 : Mean = 35 years old; SD = 14; n = 137…
Nicolas Melançon
  • 313
  • 1
  • 3
  • 6
26
votes
4 answers

Is Standard Deviation the same as Entropy?

We know that standard deviation (SD) represents the level of dispersion of a distribution. Thus a distribution with only one value (e.g., 1,1,1,1) has SD equals to zero. Similarly, such a distribution requires little information to be defined. On…
23
votes
2 answers

What is the purpose of subtracting the mean from data when standardizing?

What is the purpose of subtracting the mean from data when standardizing? and What is the purpose of dividing by the standard deviation?
20
votes
5 answers

Recursive formula for variance

I'd like to know how I can recursively (iteratively) compute variance, so that I may calculate the standard deviation of a very large dataset in javascript. The input is a sorted array of positive integers.
19
votes
1 answer

Can I calculate the new standard deviation when adding a value without knowing the original set of values?

I have these three mathematical values that describe an unknown set of values. Mean (population mean, not from sample) $\bar{x} = 3$ Standard deviation $s = 1.5$ Number of elements in population (number of values in original set) $n = 15$ Now…
dialogik
  • 313
  • 1
  • 3
  • 7
15
votes
2 answers

What is the difference between root mean square, and standard deviation?

I am currently working through the Feynman Lectures, chapter 6: Probability. I have reached his problem of the "random walk". After deriving this and getting some root mean square, wouldn't this just be the same as finding the standard deviation?…
14
votes
2 answers

How to determine if Standard Deviation is high/low

I have derived the following response time data for a performance test I am running: Min - 8sec Max - 284sec Average - 28sec Standard Deviation - 27sec What does the standard deviation say about the response time data distribution? When you say…
rro
  • 243
13
votes
4 answers

How can I calculate "most popular" more accurately?

I'm developing a website at the moment. The website allows users to "rate" a post from 0 to 5. Posts can then be displayed in order of popularity. At the moment, my method of calculation is pretty primitive: average_rating = total_rating/ratings the…
bodacious
  • 357
13
votes
5 answers

How can the standard deviation be interpreted when the range is partially impossible?

After meassuring the answer time of a software system I calculated the standard deviation from the samples. The average time is about 200ms, the standard deviation $$\sigma = 300ms$$ According to the image below this should mean that 68.2% of all…
stacker
  • 601
1
2 3
95 96