143k views
4 votes
Given the discrete uniform population f(x) = 1 3 , x = 2, 4, 6, 0, elsewhere, find the probability that a random sample of size 54, selected with replacement, will yield a sample mean greater than 4.1 but less than 4.4. assume the means are measured to the nearest tenth.

2 Answers

4 votes

Final answer:

A random sample of size 54 from a discrete uniform distribution is to be assessed for the likelihood of having a sample mean between 4.1 and 4.4. The solution involves using the Central Limit Theorem, finding z-scores, and determining the probability from the normal distribution, although further information is needed to complete the calculation.

Step-by-step explanation:

The student is asking to find the probability that a random sample of size 54, chosen from a discrete uniform population with replacement, will yield a sample mean between 4.1 and 4.4, given that the population takes on values 2, 4, and 6 with equal probability 1/3 (and 0 otherwise).

To solve this, we can use the Central Limit Theorem, which indicates that the sampling distribution of the sample mean will be approximately normal if the sample size is large enough, which is the case here with a sample size of 54. However, as we are dealing with a discrete uniform distribution, we might calculate the exact mean and standard deviation of the distribution first and then use these to find the corresponding z-scores for 4.1 and 4.4. Finally, we would use the normal distribution table or a computational tool to find the required probability.

Unfortunately, without complete information about the calculation of these z-scores and the subsequent steps involved, I cannot provide a precise solution. The Central Limit Theorem and knowledge of the discrete uniform distribution are crucial in guiding how we approach and solve such a probability question.

User Rhodope
by
6.8k points
6 votes
First find the expectation and standard deviation of X

Let X be any discrete random variable with probability mass function, pmf, f(x) = P(X = x)

The expectation is:

E(X) = μ = ∑x * P(X = x)

The variance is:

Var(X) = σ²
= ∑(x - μ)² * P(X = x)
= {∑x² * P(X = x) }- μ²

the standard deviation is the square root of the variance.

E(X) = 4
Var(X) = 8/3
stddev(X) = 1.632993

Let X1, X2, ... , Xn be a simple random sample from a population with mean μ and variance σ².

Let Xbar be the sample mean = 1/n * ∑Xi
Let Sn be the sum of sample observations: Sn = ∑Xi

then, if n is sufficiently large:

Xbar has the normal distribution with mean μ and variance σ² / n
Xbar ~ Normal(μ , σ² / n)

Sn has the normal distribution with mean nμ and variance nσ²
Sn ~ Normal(nμ , nσ²)

The great thing is that it does not matter what the under lying distribution is, the central limit theorem holds. It was proven by Markov using continuing fractions.

if the sample comes from a uniform distribution the sufficient sample size is as small as 12
if the sample comes from an exponential distribution the sufficient sample size could be several hundred to several thousand.

if the data comes from a normal distribution to start with then any sample size is sufficient.
for n < 30, if the sample is from a normal distribution we use the Student t statistic to estimate the distribution. We do this because the Student t takes into account the uncertainty in the estimate for the standard deviation.
if we now the population standard deviation then we can use the z statistic from the beginning.
the value of 30 was empirically defined because at around that sample size, the quantiles of the student t are very close the quantiles of the standard normal.

In this question we have
Xbar ~ Normal( μ = 4 , σ² = 2.666667 / 54 )
Xbar ~ Normal( μ = 4 , σ² = 0.04938272 )
Xbar ~ Normal( μ = 4 , σ = 1.632993 / sqrt( 54 ) )
Xbar ~ Normal( μ = 4 , σ = 0.2222222 )

For any normal random variable X with mean μ and standard deviation σ , X ~ Normal( μ , σ ), (note that in most textbooks and literature the notation is with the variance, i.e., X ~ Normal( μ , σ² ). Most software denotes the normal with just the standard deviation.)

You can translate into standard normal units by:
Z = ( X - μ ) / σ

Where Z ~ Normal( μ = 0, σ = 1). You can then use the standard normal cdf tables to get probabilities.

Find P( 4.1 < Xbar < 4.4 )
= P( ( 4.1 - 4 ) / 0.2222222 < ( Xbar - μ ) / σ < ( 4.4 - 4 ) / 0.2222222 )
= P( 0.45 < Z < 1.8 )
= P( Z < 1.8 ) - P( Z < 0.45 )
= 0.9640697 - 0.6736448
= 0.2904249
User James Hibbard
by
7.2k points