Question

In: Statistics and Probability

33.     A population consists of the following scores: 12,   1,   10,   3,   7,   3          A....

33.     A population consists of the following scores: 12,   1,   10,   3,   7,   3

         A. Compute m and s for the population.

         B. Find the z-score for each raw score in the population.

         C. Transform each score into a new standardized value so that the standardized distribution has a mean of m = 100 and a standard deviation of s = 20.

         Do parts A, B, and C, and then from part C, choose which new score would correspond to the original score of 12:

a.       115

b.      120

c.       130

d.      140

Solutions

Expert Solution

Let us consider the given data can be written as (12,1,10,3,7,3).

A) m=mean of the given data= 36/6=6

s=standard deviation of the given data= sqrt(var)=sqrt(19.2)= 4.38178

B) Z-Score for each raw score in the population

Z-score of 12 is Z=(12-m)/s = (12-6)/4.38= 1.37

Z-score of 1 is Z=(1-m)/s = (12-6)/4.38= -1.41

Z-score of 10 is Z=(10-m)/s = (12-6)/4.38=0.91

Z-score of 3 is Z=(3-m)/s = (12-6)/4.38= -0.68

Z-score of 7 is Z=(7-m)/s = (12-6)/4.38= 0.23

Z-score of 3 is Z=(3-m)/s = (12-6)/4.38= -0.68

C) Transformation of the given data such that mean of standardized variable is 100 & standard devation is 20.

Transformation of the variable is (Z-score * s) + m

For 12, (1.37*20) + 100= 127.4

For 1, (-1.41*20) + 100= 77.18

For 10, (0.91*20) + 100= 118.26

For 3, (-0.68*20) + 100= 86.31

For 7, (0.23*20) + 100= 104.56

For 3, (-0.68*20) + 100= 86.31

new score would correspond to the original score of 12 is 130 since 127.4~ 130.

I have done this problem into R. So, I am attaching my R-code

> x=c(12,1,10,3,7,3)
> m=mean(x)
> s=sd(x)
> z=(x-m)/s
> z
[1] 1.3693064 -1.1410887 0.9128709 -0.6846532 0.2282177 -0.6846532
> m
[1] 6
> s
[1] 4.38178
> z*20 + 100
[1] 127.38613 77.17823 118.25742 86.30694 104.56435 86.30694


Related Solutions

33.     A population consists of the following scores: 12,   1,   10,   3,   7,   3          A....
33.     A population consists of the following scores: 12,   1,   10,   3,   7,   3          A. Compute m and s for the population.          B. Find the z-score for each raw score in the population.          C. Transform each score into a new standardized value so that the standardized distribution has a mean of m = 100 and a standard deviation of s = 20.          Do parts A, B, and C, and then from part C, choose which new...
A population consists of the following scores: 6 12 19 47 32 33 8 8 9...
A population consists of the following scores: 6 12 19 47 32 33 8 8 9 23 1. Compute the μ and the σ for the population. 2. On a horizontal axis under the bell curve, plot the μ, the σ, and the values for the SD lines. Then record the raw scores in the table on the Template. 3. Find the z-score for each score in the population, plot the z-score  μ, the σ, and the values for the SD...
Problem 1. A set of 25 measurements consists of the values 3 6 7 15 12...
Problem 1. A set of 25 measurements consists of the values 3 6 7 15 12 6 8 4 5 6 5 12 1 3 3 7 5 10 8 3 9 2 6 1 5 (a) Construct a relative frequency histogram to describe the data. (10 pts) (b) Find: the median m (5 pts), the sample mean ¯x (5 pts), the sample standard deviation s (5 pts), the upper and lower quartiles (10 pts), the 37-th percentile (5 pts)....
A SAMPLE consists of the following: N=3 scores: 0, 4, 12 Find M (mean), SS (sum...
A SAMPLE consists of the following: N=3 scores: 0, 4, 12 Find M (mean), SS (sum of squares), s2 (variance), and s (standard deviation) Find the z scores for each score in the sample Transform the original sample into a new sample with a mean of M= 50, and s=10
A population consists of the following five values: 1, 2, 3, 3, and 4. (a) List...
A population consists of the following five values: 1, 2, 3, 3, and 4. (a) List all samples of size 2 from left to right using without replacement, and compute the mean of each sample. (Round your Mean values to 1 decimal place.)    Sample Values Sum Mean         1 (Click to select)1,23,41,42,31,3                  2 (Click to select)1,33,31,43,41,2                  3 (Click to select)1,21,41,33,43,3                  4 (Click to select)3,31,23,41,41,3                  5 (Click to select)3,32,31,23,42,4                  6 (Click to...
1, 1, 1, 1, 1, 3, 3, 3, 3, 6, 6, 6, 7, 7, 7, 12,...
1, 1, 1, 1, 1, 3, 3, 3, 3, 6, 6, 6, 7, 7, 7, 12, 12, 13, 17 1) Use three arguments to explain the character of the shape of the distribution. 2) Determine the presence of outliers in either bound of the distribution by the Fences Criterion. 3) Determine the presence of outliers in either bound using the Z-scores criterion. 4) Summarize data in general.
A population consists of the following N=6 scores: 2,4,1,2,7,2 a) compute mean and standard deviation for...
A population consists of the following N=6 scores: 2,4,1,2,7,2 a) compute mean and standard deviation for the population b)Find z-score for each score in the population c) Transform the original population into a new population of N=5 scores with a mean of M(mu)=50 and a standard deviation of sigma=10?
Consider the following sorted int array: 1 3 4 5 7 9 10 12 If we...
Consider the following sorted int array: 1 3 4 5 7 9 10 12 If we search for the key value 10 in the array using the binary search algorithm, what is the sequence of indices that will be accessed in the array? (Hint: For a sublist between index values low and high, the middle index is calculated using: (low + high) / 2. So you need to show the sequence of indices of the middle index in each pass.)...
The following sample data are from a normal population: 10, 9, 12, 14, 13, 11, 7,...
The following sample data are from a normal population: 10, 9, 12, 14, 13, 11, 7, 4. a. What is the point estimate of the population mean? b. What is the point estimate of the population standard deviation (to 2 decimals)? c. With 95% confidence, what is the margin of error for the estimation of the population mean (to 1 decimal)? d. What is the 95% confidence interval for the population mean (to 1 decimal)? ( , )
For the data set 1 2 3 4 7 7 7 8 11 12 12 15...
For the data set 1 2 3 4 7 7 7 8 11 12 12 15 15 16 17 17 17 18 20 20 22 24 24 25 26 26 26 26 27 30 32 32 33 34 34 36 38 39 43 44 45 46 47 47 48 51 52 52 53 54 54 54 55 56 58 58 59 61 63 65 65 67 69 70 73 75 75 76 77 77 79 80 81 82 82 (a)...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT