Tino APCS

Lab 16.1 Statistics

Background

  1. You are provided with a text file, (numbers.txt), containing a large (N <= 1000) number of integers. The integers range in value from 0 to 100. The text file has been created with one value on each line. Due to the potential for the sum of the numbers to be very large, you should use a long integer in your calculation to find the average.

  2. The number of integers in the file is unknown.

  3. Your program must find the average, standard deviation, and mode of the list of numbers. The mode is defined as the value(s) present with the highest frequency. Calculating the standard deviation consists of the following steps:

    1. Find the average of the list of numbers.
    2. Determine the difference of each number from the average, and square each difference. Sum all the differences.
    3. Divide this sum by (the number of values - 1).
    4. Take the square root of the above division result from step c.

  4. Example, given this list of numbers: 7 4 5 9 10

    1. The average = 7
    2. Sum of square of differences:

  5. For a normal distribution, 68.3% of the data will lie within one standard deviation of the average, while 95.4% will lie within two standard deviations.

Assignment

  1. Your program should print out the average, standard deviation, and mode of the data in numbers.txt.
    Format the real numbers to print with 2 decimal places.

  2. Your program must utilize proper modular design and parameter passing. Don't do everything is the main() method.

  3. Your classes must include your name and period in the format PX_LastName_FirstName_Title

You must Sign In to submit to this assignment

Last modified: December 12, 2022

Back to Summary

Dark Mode

Outline