Respuesta :
Answer:
a i.) The mean for the security company is $ 1.47 million
a ii.) The median for the security company is $ 1.55 million
a iii.) The mean for the other companies is $ 1.96 million.
a iv.) The mean for the other companies is $ 2.0 million.
b) B. The mean and the median for the security company are both lower than the mean and the median for the collections performed by other companies.
c) B. Since the security company appears to have collected lower revenue than the other companies, there is some evidence of stealing by the security company's employees.
Step-by-step explanation:
By mean, we sum all the observation and divide by the sample size (n). Where sample size is the number of observations.
Mathematically,
[tex]\bar{x} = \frac{\sum\limits_{i=1}^{n}{x_{i}}}{n}[/tex], where xi is the observations or values given.
By median, we mean middle number. So, we sort the values in ascending or descending order and take the value(s) in the middle. If the sample size is even, we take the 2 middle values and obtain the average.
See below, R programming codes for the solution.
##########...... R code
s = c(1.6,1.8,1.6,1.8,1.7,1.2,1.1,1.2,1.2,1.5)
c = c(1.5,2.1,1.9,2.2,1.9,1.7,2.1,2.2,2.2,1.8)
length(s)
mean(s); median(s)
mean(c);median(c)
t = (mean(s)-mean(c))/sqrt((var(s) + var(c))/length(s))
pnorm(t)
##############################################
For question C, we compute the test statistics, and obtain the p-value, see the last two lines of the R codes.
And since the p-value is less than level of significance, the test is significant. Thus, we conclude that:
Since the security company appears to have collected lower revenue than the other companies, there is some evidence of stealing by the security company's employees.
The mean for the security company is $1.47 million and the mean for the other companies is $1.96 million.
The median for the security company is $1.55 million and the median for the other companies is $2 million.
The mean and the median for the security company are both lower than the mean and the median for the collections performed by other companies.
Since the security company appears to have collected lower revenue than the other companies, there is some evidence of stealing by the security company's employees.
What is Mean?
Mean is the average of a group of numbers. The value of the mean can be determined by adding the numbers together and dividing it by the total number
Mean = sum of the numbers / total number
Mean of the security company = (1.6 + 1.8 + 1.6 + 1.8 + 1.7 + 1.2 + 1.1 + 1.2 + 1.2 + 1.5) / 10 = 1.47
Mean of the other companies = (1.5 + 2.1 + 1.9 + 2.2 + 1.9 + 1.7 + 2.1 + 2.2 + 2.2 + 1.8) / 10 = 1.96
What is Median?
Median can be described as the number that occurs in the middle of a set of numbers that are arranged either in ascending or descending order.
Median of the security company = 1.1, 1,2, 1.2, 1.2, 1.5, 1.6, 1.6, 1.7, 1.8, 1.8
(1.5 + 1.6) / 2 = 1.55
Median of the other companies = 1.5, 1.7, 1.8, 1.9, 1.9, 2.1, 2.1, 2.2, 2.2, 2.2
(1.9 + 2.1) / 2 = 4/2 = 2
To learn more about mean, please check: https://brainly.com/question/25842202