If you have a random sample of 5 numbers, how do you find the sample variance?

2015-09-21 9:13 pm

回答 (1)

2015-09-23 9:38 am
✔ 最佳答案
To find the sample variance , you need a formula:
sample variance = [ 1 / (n-1) ] * [ Σ x^2 - n*(xbar^2) ]

For example, suppose random samples x = 2 , 10 , 7 , 5 , 18

xbar = ( 2 + 10 + 7 + 5 + 18 ) / 5 = 8.4

Σ x^2 = 2^2 + 10^2 + 7^2 + 5^2 + 18^2 = 502

sample variance
= [ 1 / (n-1) ] * [ Σ x^2 - n*(xbar^2) ]
= ( 1 / 4 ) * ( 502 - 5*8.4^2 )
= 37.3


收錄日期: 2021-05-02 14:07:25
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20150921131322AAru8ev

檢視 Wayback Machine 備份