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

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

Parent

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

Post
+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)
Thank you, I know that (except for the term _unbiased variance_. My question was about not just small...
Ivan Nepomnyashchikh‭ wrote 8 months ago · edited 8 months ago

Thank you, I know that (except for the term unbiased variance). My question was about not just smaller than the population samples - it was about sample sizes which are less than $30$.

Agent Smith‭ wrote 8 months ago

The minimum sample size is 30. Anything less than that and your sample is no good (too small). However, the unbiased variance applies to all samples less than the population size.