Mean and standard deviation. Write a program that reads a set of floating-point data values. Choose an
Question:
Mean and standard deviation. Write a program that reads a set of floating-point data values. Choose an appropriate mechanism for prompting for the end of the data set. When all values have been read, print out the count of the values, the average, and the standard deviation. The average of a data set {x1, . . ., xn} is x = ∑xi n, where ∑xi = x1 +…+ xn is the sum of the input values. The standard deviation is
However, this formula is not suitable for the task. By the time the program has computed x, the individual xi are long gone. Until you know how to save these values, use the numerically less stable formula
You can compute this quantity by keeping track of the count, the sum, and the sum of squares as you process the input values.
Step by Step Answer: