Compute the standard deviation of given dataset

You are given a random sample of Volumes from Arby's soda machine.

1
Volumes = [16.500, 20.400, 20.700, 22.200, 20.500, 19.900, 19.600, 19.300, 15.900, 20.500, 17.900];
1
Volumes = {16.500, 20.400, 20.700, 22.200, 20.500, 19.900, 19.600, 19.300, 15.900, 20.500, 17.900};
1
2
3
import numpy as np

Volumes = np.array([16.500, 20.400, 20.700, 22.200, 20.500, 19.900, 19.600, 19.300, 15.900, 20.500, 17.900])
1
Volumes = c(16.500, 20.400, 20.700, 22.200, 20.500, 19.900, 19.600, 19.300, 15.900, 20.500, 17.900)
1
2
3
from sympy import *

Volumes = Matrix([16.500, 20.400, 20.700, 22.200, 20.500, 19.900, 19.600, 19.300, 15.900, 20.500, 17.900])

Compute the standard deviation from the random sample Volumes:

standard deviation = oz

Correct answer

Student view placeholder

In student views this area is used for assessment and score info.
Tools

Staff information

Question

Title:
Compute the standard deviation of given dataset

Variant

Started at:
2026-08-05 00:41:26 (CDT)
Duration:
0s
Show/Hide answer
{
  "std": 1.813083761791696
}
History
dec frac
rad deg