Question

In: Statistics and Probability

Suppose the heights of students are normally distributed with mean 172 and variance 9. a) Randomly...

Suppose the heights of students are normally distributed with mean 172 and variance 9.

a) Randomly pick two students. What's the probability that the first student is taller than the second student?

b) Randomly pick two students. What's the probability their average height is larger than 175?

Solutions

Expert Solution

Heights of students are normally distributed with mean 172 and variance 9

Thus X~ N(172 , 9 )

a) Randomly pick two students, to find probability that the first student is taller than the second student.

Now we don't have size neither have any idea about Randomly picked two students .

So we can do following things

Let us define two variables x and y correspond to two students .

Generate sample of size n = 100,500,1000 form X ~ N( 172 , 9 )

Choose random samples from generated sample of normal distribution of size n/2 for both variables

Now compare now variables.

We will use R Software

Command-

{

n=100                              # sample size
r=rnorm(n,172,3)                               # genrate samples from N( = 172, = 3)


for (i in 1:50)                                     # we will take 50 repitaions
{
x=sample(r,n/2)                                          # first student randomly selected from normal distribution
y=sample(r,n/2)                                         # second student randomly selected from normal distribution

# probability that the first student is taller than the second student   

# P(x>y)
prob[i]=length(which(x>y))/length(x)          # probability of first student taller than the second student
}

OUTPUT -

> prob
[1] 0.44 0.36 0.54 0.44 0.56 0.44 0.44 0.40 0.50 0.44 0.60 0.54 0.54 0.60 0.52
[16] 0.56 0.46 0.52 0.50 0.50 0.52 0.54 0.46 0.46 0.48 0.56 0.58 0.46 0.46 0.50
[31] 0.46 0.50 0.46 0.46 0.48 0.50 0.46 0.52 0.54 0.54 0.44 0.42 0.52 0.48 0.52
[46] 0.40 0.50 0.60 0.52 0.50


> mean(prob)
[1] 0.4948

Now we will repeat same program for n= 1000

n=1000
r=rnorm(n,172,3)


for (i in 1:50)
{
x=sample(r,n/2)
y=sample(r,n/2)
prob[i]=length(which(x>y))/length(x)
}

OUTPUT -

> prob
[1] 0.502 0.480 0.476 0.504 0.472 0.492 0.514 0.476 0.518 0.488 0.504 0.500
[13] 0.524 0.520 0.502 0.538 0.504 0.506 0.484 0.478 0.486 0.512 0.488 0.490
[25] 0.508 0.482 0.504 0.502 0.522 0.526 0.516 0.502 0.520 0.508 0.514 0.486
[37] 0.538 0.538 0.538 0.512 0.504 0.482 0.522 0.494 0.482 0.472 0.504 0.478
[49] 0.522 0.496


> mean(prob)
[1] 0.5026

Conclusion

Form both output we can conclude that probability that the first student is taller than the second student

is approximately equal to 0.50

b)

Randomly pick two students. To find probability that their average height is larger than 175

i.e   ( x + y )/2 > 175

Now Let T = ( x + y )/2

Given

= 172, = 3

To find P( T>175)

Now from CLT

Z = ( T - 172 ) / n1/2

But we don't have n

So we can use similar process used in part (a) now to find T > 175

Command

{

n =1000                                                     # sample size
r=rnorm(n,172,3)


for (i in 1:500)                                                         # 500 iterations
{
x=sample(r,n/2)
y=sample(r,n/2)
avg=(x+y)/2                                               #   avg   =    T = ( x + y ) / 2
prob[i]=length( which( avg>175 ))/length(x)            # P( T>175)
}

mean(prob)

}

Output -

mean(prob)                # for n = 1000
[1] 0.079768

mean(prob)                 # for n = 1500

[1] 0.083408

mean(prob)                # for n = 1750       
[1] 0.08051429


mean(prob)                 # for n = 2000
[1] 0.082236

Conclusion probability their average height is larger than 175 is approximately = 0.08


Related Solutions

Suppose men's heights are normally distributed with mean of 176 cm and variance of 25cm^2. A....
Suppose men's heights are normally distributed with mean of 176 cm and variance of 25cm^2. A. What proportion of mean are between 172 cm and 178 cm tall? B. Find the minimum ceiling of an airplane such that at most 2% of the men walking down the aisle will have to duck their heads. C. Suppose you take a random sample of 6 men. What is the sampling distribution of the sample mean height? Why? D. Find the probability that...
) Suppose College male students’ heights are normally distributed with a mean of µ = 69.5...
) Suppose College male students’ heights are normally distributed with a mean of µ = 69.5 inches and a standard deviation of σ =2.8 inches. What is the probability that randomly selected male is at least 70.5 inches tall? If one male student is randomly selected, find the probability that his height is less than 65.2 inches or greater than 71.2 inches. How tall is Shivam if only 30.5% of students are taller than him There are 30.5% of all...
Let us suppose that heights of Richmond students are normally distributed with a mean of 68...
Let us suppose that heights of Richmond students are normally distributed with a mean of 68 inches and a standard deviation of 2.5 inches. a. What will be the height of a student who is in the top 1%? Is this the minimum or the maximum height? b. What is the height range of students who are between the third and fourth quintile? c. What proportion of students are between 60 and 65 inches in height? d. What will be...
9. The heights of a population of 100,000 men are normally distributed with a mean of...
9. The heights of a population of 100,000 men are normally distributed with a mean of 68 inches and standard deviation of 3. About how many men have heights (a) below 64 inches? (b) above 74 inches? (c) between 62 and 74 inches? 10. Assume that the scores on the Graduate Record Exam (GRE) are normally distributed with a mean of 500 and a standard deviation of 115. (a) Find the percentage of students who scored at least 600. (b)...
The heights of female students in a university are approx normally distributed with a mean of...
The heights of female students in a university are approx normally distributed with a mean of 162 cm and a standard dev of 8 cm. Explain your answers. a) Approx 68% of all female students in a university will have heights between ____ cm and ____ cm. b) Heights greater than ____ cm would be considered peculiar.
The heights of 1000 students are approximately normally distributed with a mean of 174.5centimeters and a...
The heights of 1000 students are approximately normally distributed with a mean of 174.5centimeters and a standard deviation of 6.9 centimeters. Suppose 200 random samples ofsize 25 are drawn from this population and the means recorded to the nearest tenth of acentimeter. Determine (a) the mean and standard deviation of the sampling distribution of ̄X; (b) the number of sample means that fall between 171 and 177 cm . Let X be a random variable following a continuous uniform distribution...
The heights of 2000 students are normally distributed with a mean of 165.5 centimeters and a...
The heights of 2000 students are normally distributed with a mean of 165.5 centimeters and a standard deviation of 7.1 centimeters. Assuming that the heights are recorded to the nearest half-centimeter, how many of these students would be expected to have heights: (a) less than 151.0 centimeters? (b) Between 163.5 and 173.0 centimeters inclusive? (c) Equal to 168.0 centimeters? (d) Greater than or equal to 182.0 centimeters?
The heights of 1000 students are normally distributed with a mean of 177.5 centimeters and a...
The heights of 1000 students are normally distributed with a mean of 177.5 centimeters and a standard deviation of 6.7 centimeters. Assuming that the heights are recorded to the nearest​ half-centimeter, how many of these students would be expected to have heights ​(a) less than 167.0 centimeters? ​(b) between 173.5 and 185.0 centimeters​ inclusive? ​(c) equal to 180.0 ​centimeters? ​(d) greater than or equal to 191.0 ​centimeters?
The heights of 1000 students are approximately normally distributed with a mean of 174.5 centimeters and...
The heights of 1000 students are approximately normally distributed with a mean of 174.5 centimeters and standard deviation is unknown. Suppose 200 random samples of size 25 are drawn from this population and the means recorded to the nearest tenth of a centimeter. with n=6 and assume the true σ is unknown and S=7.5 centimeters instead Determine (a) the mean and standard deviation of the sampling distribution of ¯X ; (b) the number of sample means that fall between 172.5...
The heights of 1000 students are approximately normally distributed with a mean of 174.5 centimeters and...
The heights of 1000 students are approximately normally distributed with a mean of 174.5 centimeters and a standard deviation of 7.9 centimeters. Suppose 200 random samples of size 35 are drawn from this population and the means recorded to the nearest tenth of a centimeter. Determine (a) the mean and standard deviation of the sampling distribution of X ; (b) the number of sample means that falls between 172.5 and 175.8 centimeters inclusive; (c) the number of sample means falling...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT