PROBLEM 4:  Grades received in BUS310-01 course: 66        53        89        92        98        72        71        80 example of how problem should be answered: PROBLEM: #colds / year      n=18 subjects 10;    8;    5;    2;     3;    3;    3;    6;    4;      2;    4;    5;     4;    4;    1;    0;  3;   5;   For computations done by hand, data must be ordered. 0      1     2     2    3     3      3    3    4    Median   4     4     4      5    5   5   6    8    10                            Q1                                                                   Q3 Sample mean =  =72/18 = 4 colds Sample median = 4 colds (midpoint of data) Sample mode = 3 and 4  (the value that occurs most often; this is a bimodal data set) First Quartile (approximation) = 0.25 * N = 0.25 * 18 = 4.5; If the value is not an integer, we can round it up to the nearest integer 5 à value is 3 Third Quartile (approximation) = 0.75 * N = 0.75 * 18 = 13.5 à 14 à value is 5 Range = max – min =10 – 0 = 10 IQR = Q3 – Q1 = 5 – 3 = 2 Variance = s2 =  = 96/17 = 5.64 colds squared Standard deviation = s =    = 2.37 colds Coefficient of variation = CV =  x 100% =2.37/4 *100% = 59.25% To convert to a Z-score:   Zi = (Xi -  mean)/s                                                                                       The 0 becomes (0 – 4) / 2.37 = -1.68;                                                  the 1 becomes (1 – 4) /2.37 = -1.27;                                                  the 2 becomes (2- 4)/2.37 =  .84;                                                  and the 4 becomes a 0; etc.  All values below the mean have negative Z scores and all values above the mean have positive Z scores. This is the output from MS Excel using the descriptive tool.  For your homework solution an output as the one below (for the excel solution) will be sufficient.   Column1     Mean 4 Standard Error 0.560112 Median 4 Mode 3 Standard Deviation 2.376354 Sample Variance 5.647059 Kurtosis 1.497461 Skewness 0.887652 Range 10 Minimum 0 Maximum 10 Sum 72 Count 18     Quartiles are approximations.   A more refined definition is the following: For Lower Quartile (25%):    Sort all observations in ascending order   Compute the position L1 = 0.25 * N, where N is the total number of observations.   If L1 is already a whole number (integer), the lower quartile is midway (average) between the L1-th value and the next one.   If L1 is not a whole number, change it by rounding up to the nearest integer. The value at that position is the lower quartile.   For Upper Quartile(75%):    Sort all observations in ascending order   Compute the position L3 = 0.75 * N, where N is the total number of observations.   If L3 is a whole number, the upper quartile is midway (average) between the L3-th value and the next one.   If L3 is not a whole number, change it by rounding up to the nearest integer. The value at that position is the upper quartile.   Please follow the above definitions in calculating the quartiles. There are two distinct situations: set size equal to a power of 4 (L is already a whole number – integer), set size not a power of 4.

MATLAB: An Introduction with Applications
6th Edition
ISBN:9781119256830
Author:Amos Gilat
Publisher:Amos Gilat
Chapter1: Starting With Matlab
Section: Chapter Questions
Problem 1P
icon
Related questions
icon
Concept explainers
Topic Video
Question

PROBLEM 4:  Grades received in BUS310-01 course:

66        53        89        92        98        72        71        80

example of how problem should be answered:

PROBLEM: #colds / year      n=18 subjects

10;    8;    5;    2;     3;    3;    3;    6;    4;      2;    4;    5;     4;    4;    1;    0;  3;   5;

 

For computations done by hand, data must be ordered.

0      1     2     2    3     3      3    3    4    Median   4     4     4      5    5   5   6    8    10

                           Q1                                                                   Q3

Sample mean =  =72/18 = 4 colds

Sample median = 4 colds (midpoint of data)

Sample mode = 3 and 4  (the value that occurs most often; this is a bimodal data set)

First Quartile (approximation) =

0.25 * N = 0.25 * 18 = 4.5; If the value is not an integer, we can round it up to the nearest integer 5 à value is 3

Third Quartile (approximation) = 0.75 * N = 0.75 * 18 = 13.5 à 14 à value is 5

Range = max – min =10 – 0 = 10

IQR = Q3 – Q1 = 5 – 3 = 2

Variance = s2 =  = 96/17 = 5.64 colds squared

Standard deviation = s =    = 2.37 colds

Coefficient of variation = CV =  x 100% =2.37/4 *100% = 59.25%

To convert to a Z-score:   Zi = (Xi -  mean)/s

                                    

                                                 The 0 becomes (0 – 4) / 2.37 = -1.68;

                                                 the 1 becomes (1 – 4) /2.37 = -1.27;

                                                 the 2 becomes (2- 4)/2.37 =  .84;

                                                 and the 4 becomes a 0; etc. 

All values below the mean have negative Z scores and all values above the mean have positive Z scores.

This is the output from MS Excel using the descriptive tool.  For your homework solution an output as the one below (for the excel solution) will be sufficient.

 

Column1

 

 

Mean

4

Standard Error

0.560112

Median

4

Mode

3

Standard Deviation

2.376354

Sample Variance

5.647059

Kurtosis

1.497461

Skewness

0.887652

Range

10

Minimum

0

Maximum

10

Sum

72

Count

18

 

 

Quartiles are approximations.   A more refined definition is the following:

For Lower Quartile (25%):
 

 

Sort all observations in ascending order

 

Compute the position L1 = 0.25 * N, where N is the total number of observations.

 

If L1 is already a whole number (integer), the lower quartile is midway (average) between the L1-th value and the next one.

 

If L1 is not a whole number, change it by rounding up to the nearest integer. The value at that position is the lower quartile.

 

For Upper Quartile(75%):
 

 

Sort all observations in ascending order

 

Compute the position L3 = 0.75 * N, where N is the total number of observations.

 

If L3 is a whole number, the upper quartile is midway (average) between the L3-th value and the next one.

 

If L3 is not a whole number, change it by rounding up to the nearest integer. The value at that position is the upper quartile.

 

Please follow the above definitions in calculating the quartiles. There are two distinct situations: set size equal to a power of 4 (L is already a whole number – integer), set size not a power of 4.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Centre, Spread, and Shape of a Distribution
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, statistics and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
MATLAB: An Introduction with Applications
MATLAB: An Introduction with Applications
Statistics
ISBN:
9781119256830
Author:
Amos Gilat
Publisher:
John Wiley & Sons Inc
Probability and Statistics for Engineering and th…
Probability and Statistics for Engineering and th…
Statistics
ISBN:
9781305251809
Author:
Jay L. Devore
Publisher:
Cengage Learning
Statistics for The Behavioral Sciences (MindTap C…
Statistics for The Behavioral Sciences (MindTap C…
Statistics
ISBN:
9781305504912
Author:
Frederick J Gravetter, Larry B. Wallnau
Publisher:
Cengage Learning
Elementary Statistics: Picturing the World (7th E…
Elementary Statistics: Picturing the World (7th E…
Statistics
ISBN:
9780134683416
Author:
Ron Larson, Betsy Farber
Publisher:
PEARSON
The Basic Practice of Statistics
The Basic Practice of Statistics
Statistics
ISBN:
9781319042578
Author:
David S. Moore, William I. Notz, Michael A. Fligner
Publisher:
W. H. Freeman
Introduction to the Practice of Statistics
Introduction to the Practice of Statistics
Statistics
ISBN:
9781319013387
Author:
David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:
W. H. Freeman