SampleVariance Command

SampleVariance( <List of Raw Data> )

Returns the sample variance of the given list of numbers.

SampleVariance({1, 2, 3, 4, 5}) yields a = 2.5.

SampleVariance( <List of Numbers>, <List of Frequencies> )

Returns the sample variance of the given list of numbers with the specified frequencies.

SampleVariance({1, 2, 3, 4, 5}, {3, 2, 4, 4, 1}) yields a = 1.67.

If the list in the Menu view spreadsheet.svg CAS View contains undefined variables, this command yields a formula for the sample variance.

SampleVariance({a, b, c}) yields 13a213ab13ac+13b213bc+13c2.