Normal Distribution Problem

186 Views Asked by At

The time taken for a computer to connect to a server is normally distributed with a mean value given by 3.3 seconds and a standard deviation of 0.66 seconds.

(a) A computer is said to have a fast connection time if it connects in less than 2.5 seconds. What percentage of computers might one expect to fall into this category?

(b) In a sample comprising 155 computers, how many would be expected to have connection times of over 4 seconds?

(c) What is the connection time for the slowest 5% of the computers?

That's the problem I have to complete. Can anyone explain/show me how to do it?

Thanks :)

2

There are 2 best solutions below

2
On

You first need to normalize your values, if a computer connects in 2.5 seconds that is 3.3-2.5=0.8 seconds less than the mean. This is 0.8/0.66=1.212 standard deviations less than the mean. You now need to know the area of a standard normal distribution to the left of -1.212 standard deviations.

The function that gives the area of a part of the normal distribution is commonly called the Q function, so you need Q(-1.212). You can ask Wolfram Alpha to calculate this for you, it gives Q(-1.212)=0.112756. So about 11.3% of connections will be "fast". You can use similar reasoning for part B, and part C is the same thing, but backwards.

Note that the Q function Wolfram Alpha uses is actually the inverse of the one defined in the Wikipedia article. You would notice something funny going on because you would get an answer of 88.7%, whereas the average connection is "slow", so that answer wouldn't make sense.

0
On

For part (b) , first of all , you can let X be the random variable of the time taken for a computer to connect to a server . Then , find out the probability of the connection time over 4 seconds , which is P(X>4) .


P(X>4)=P(Z>(4-3.3)/0.66)=P(Z>1.06)=0.5-0.3554=0.1446


Then by using Binomal Distribution , let Y be the random variable of the the computers have connection time over 4 seconds .Y~Bin(155 , 0.1446)

since E(Y) = np , where E(Y) is the expected value of Y .

so the expected value in the situation is : 155(0.1446) = 22.413

Therefore , there are 22 computers have connection time over 4 seconds .

Hope it is useful information for you to solve it .