Question

In: Statistics and Probability

Suppose that the current measurements in a strip of wire follow a normal distribution with a mean of 10 mA and a variance of 4 mA2.

USING R SOFTWARE FOR STATISTICAL ANALYSIS: (SHOW YOUR CODE)

Suppose that the current measurements in a strip of wire follow a normal distribution with a mean of 10 mA and a variance of 4 mA2. What is the probability that a measurement exceeds 13 mA?

Make an area under the curve graph.

 

Solutions

Expert Solution

Here we have

Since area under the normal curve lies within 4 SDs of mean so we need to area between 13 and .

Following is the R-script to find the required probability:

# Assigning values to variable
mean=10; sd=2
lb = 13; ub=18

# Generating sequence of numbers between 2 and 18 of length 100

x <- seq(-4,4,length=100)*sd + mean

# Creating normal curve

hx <- dnorm(x,mean,sd)

plot(x, hx, type="n", xlab="IQ Values", ylab="",
main="Normal Distribution", axes=FALSE)

axis(1, at=seq(2, 18, 2), pos=0)
i <- x >= lb & x <= ub
lines(x, hx)

# SHowing area corresponding to required probability

polygon(c(lb,x[i],ub), c(0,hx[i],0), col="grey")

area <- pnorm(ub, mean, sd) - pnorm(lb, mean, sd)
result <- paste("P(",lb,"< IQ <",ub,") =",
signif(area, digits=3))
mtext(result,3)

---------------

Following is the screen shot of curve:

Following is the screen shot of code:

Answer: 0.0668


Related Solutions

Suppose the current measurements in a strip of wire are assumed to follow a normal distribution...
Suppose the current measurements in a strip of wire are assumed to follow a normal distribution with a mean of 10 mA and a variance of 4 (mA)^2. a. What is the probability that a measurement will exceed 13 mA? b. What is the probability that a current measurement is between 9 and 11 mA? c. Determine the value for which the probability that a current measurement is below this value is 0.98. Please show all steps and explanations. Thank...
Suppose that the pH measurements of the field from the question above follow a normal distribution...
Suppose that the pH measurements of the field from the question above follow a normal distribution with mean 11 pH and standard deviation 2 pH. What is the probability that the engineer obtains a sample mean (with n = 5) greater than 11.8 pH? Assume each measurement is independent of each other.
Suppose x has a normal distribution with a mean of 78 and a variance of 484.00....
Suppose x has a normal distribution with a mean of 78 and a variance of 484.00. If a sample of 19 were randomly drawn from the population, find the probability of      for each of the following situations. a) less than 79: probability =   b) greater than 85: probability =   c) in between 68 and 84: probability =   d) in between 77 and 91: probability =   Note: Do NOT input probability responses as percentages; e.g., do NOT input 0.9194 as...
Suppose x has a normal distribution with a mean of 79 and a variance of 441.00....
Suppose x has a normal distribution with a mean of 79 and a variance of 441.00. If a sample of 15 were randomly drawn from the population, find the probability of   mu hat   for each of the following situations. a) less than 77: probability = b) greater than 83: probability = c) in between 65 and 76: probability = d) in between 76 and 94: probability =
Suppose that male adult weights follow a normal distribution with a mean of 182.9lb and a...
Suppose that male adult weights follow a normal distribution with a mean of 182.9lb and a standard deviation of 40.8lb. 1.Find the probability that 1 randomly selected male has a weight greater than 156.25 lb. 2.Find the probability that a sample of 16 males have a mean weight greater than 156.25 lb.
Suppose the height of individuals in a population follow a normal distribution with a mean (μ)...
Suppose the height of individuals in a population follow a normal distribution with a mean (μ) of 66 inches and a standard deviation (σ) of 4 inches. a) Using the statistical software R, sample n individuals from the distribution described above. For N=10,000 iterations, compute the average height for n=5, n=15, n=50, n=100 individuals and plot a histogram of the sampling distribution of the Z score (?̅−??/√? ) b) Using the statistical software R, sample n individuals from the distribution...
Suppose that y has a normal distribution with mean 1 and variance 9. What is the...
Suppose that y has a normal distribution with mean 1 and variance 9. What is the probability that y is in the interval [.7, 2.5]?
the height in children aged 10-15 is assumed to follow a normal distribution with a mean...
the height in children aged 10-15 is assumed to follow a normal distribution with a mean of 165 with a standard deviation of 15. c)what proportion of children 10-15 years of age have height less than 145? d)what proportion of children 10-15 years of age have height between 125 and 210? e)how tall does a child 10-15 years of age have to be shorter than 95% of children? f)how tall does a child 10-15 years of age have to be...
Suppose the heights of adult women follow a normal distribution with a mean of 65.5 inches...
Suppose the heights of adult women follow a normal distribution with a mean of 65.5 inches and a standard deviation of 2.75 inches. Determine the following: 1.) What percent of adult women are taller than 6 feet (72 inches)? 2.) What percent of adult women are taller than 5 feet (60 inches)? 3.) What percent of adult women are between 60 and 72 inches tall? 4.) Because of the high cost of materials, the company has decided that they cannot...
How to use mean-variance analysis with a normal distribution?
How to use mean-variance analysis with a normal distribution?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT