Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

What is the formula for sample standard deviation of a small sample size?

+5
−1

The formula for sample standard deviation is given by:

$$s = \sqrt{\frac{\sum_{i=1}^{i=N} (x_i - \bar{x})^2}{N-1}}$$

Am I right that when the sample size is small ($N<30$), the formula for sample standard deviation becomes:

$$s = t_{N-1, \text{confidence}} \sqrt{\frac{\sum_{i=1}^{i=N} (x_i - \bar{x})^2}{N-1}} \ \ \ \ \ \ \ \ ?$$

Here, $t_{N-1, \text{confidence}}$ is the Student's $t$ coefficient obtained from the tables (the tables are given, for instance, here).


The reason I am asking is the following. I had no doubts whatsoever that I must multiply standard deviation by the Student's $t$ coefficient for a small sample size. And I have been doing it all the time. I used it in a draft for an article. When I was checking the draft, I decided to check this formula. First, I could not remember where I got it from. Second, I searched the books and the Internet only to find out that people use Student's $t$ coefficient to calculate confidence interval, not standard deviation. I tried to derive my formula from the formula for confidence interval and failed. I talked to a fellow student who also thinks standard deviation must be multiplied by Student's $t$ coefficient and also does not remember why.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

2 answers

You are accessing this answer with a direct link, so it's being shown above all other answers regardless of its score. You can return to the normal view.

+7
−0

The sample standard deviation (with Bessel's correction) is defined to be the first formula in your post. It doesn't ‘become’ anything else.

You were possibly remembering using the sample standard deviation in an estimator for the population mean. The \(t\)-value is multiplied by the sample standard deviation as part of finding the confidence interval for the population mean, as you've probably seen in your research.

A somewhat related notion is correcting for the fact that the sample standard deviation is consistently an underestimate of the population standard deviation for small population sizes, even after Bessel's correction. There's no one formula for an unbiased estimate of the population standard deviation for an arbitrary distribution, but for particular distributions, the sample standard deviation can be made unbiased by multiplying by a correction factor. Wikipedia has a table of coefficients for a normal distribution (if you use these values, note that they are meant to be divisors, not multiplicands—they are all < 1). But this factor isn't the $t$-value.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

Works for me (1 comment)
+0
−0

From the little that I know ...

  1. If the sample = population (census)
    $\sigma^2 = \displaystyle\frac{1}{N}\sum_{i = 1}^N (x_i - \mu)^2$ where $N$ is the size of the population and $\mu$ is the population mean. The variance is $\sigma^2$ and the standard deviation then is $\sigma$

  2. If the sample is smaller than the population (any study except a census)
    $\sigma^2 = \displaystyle\frac{1}{n - 1}\sum_{i = 1}^n(x_i - \bar x)^2$ where $n$ is the size of the sample and $\bar x$ is the sample mean. This $\sigma^2$ is called the unbiased variance and the standard deviation is $\sigma$.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

Thank you, I know that (except for the term _unbiased variance_. My question was about not just small... (2 comments)

Sign up to answer this question »