Write three functions-statistics-average-sd


Write three functions, statistics, average and sD as follows. The statistics function returns no value and has six parameters: four scores followed by their average and standard deviation. It invokes average and sD in order to obtain the values of the average and standard deviation for the four scores it receives. The average function has five parameters: four scores followed by their average-- its job are to compute the value of average from the four scores. The sD function has six parameters: four scores followed by their average and their standard deviation-- its job is to compute the standard deviation from the scores and their average.

Computing the Standard Deviation: The deviation of a score is the difference between it and the average. The standard deviation of four scores is defined to be the square root of ... the average of ... the square of ... the deviation of EACH score.

Embed the functions in a program that allows you to test the functions again and again until you tell the program you are finished.

Input Details: The scores are entered as numbers with or without decimal points. In response to the continuation prompts (described below) the user types a y or a Y to signify "continue" with any other character signifying "quit".

Output Details: Prompt for the input using "Enter 4 decimal numbers, I will give you the mean and standard deviation of the data". The output should be of the form: "mean score1 score2 score3 score4 is AVERAGE" followed by (on the next line) "the standard deviation of these numbers is STANDARD DEV", and followed by the continuation prompt "y or Y continues, any other terminates"

EXAMPLE:

Enter 4 decimal numbers; it will give you the mean and standard deviation of the data:
1  2  3  4
mean of 1 2 3 4 is 2.5
The standard deviation of these numbers is 0.559017
y or Y continues, any other terminates
y

Enter 4 decimal numbers; it will give you the mean and standard deviation of the data:
3.0004  2.995  3.01  2.98777
Mean of 3.0004 2.995 3.01 2.98777 is 2.99829
The standard deviation of these numbers is 0.00405486
y or Y continues, any other terminates

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: Write three functions-statistics-average-sd
Reference No:- TGS0456

Expected delivery within 24 Hours