Answer on Question #52168 – Math – Statistics and Probability
1 The probability that Kodjo and Adoga pass an examination are and respectively. Find the probability of both boys failing the examination.
2 Three balls are drawn from a box containing 6 red marbles, 4 white marbles and 5 blue marbles. Find the probability that they are drawn in the order: red, white, and blue if each ball is drawn with replacement.
3 When a die is thrown, what is the probability that the number is greater than 1, given that it is odd?
4 Giving that mean = 34, median = 32 and standard deviation as 12. Calculate the Pearson’s coefficient of skewness
5 Calculate the standard deviation of the marks: 2,3,6,2,5,0,4,2.
6 Find the mode of 3, 6, 10, 13, 14, 17, 19 and 22
7 Find the median of 3, 6, 10, 13, 14, 17, 19 and 22
8 calculate the arithmetic mean of 3, 6, 10, 13, 14, 17, 19 and 22
9 The data which has been collected for some other enquiry order than the one of immediate interest is called ...
Solution
1. If the probability that Kodjo and Adoga pass an examination are and respectively, then the probability that Kodjo and Adoga fail an examination are and respectively. Suppose that events “Kodjo passes an examination”, “Adoga passes an examination” are independent, then events A = “Kodjo passes an examination”, B = “Adoga passes an examination” are independent too.
By multiplication rule, the probability of both boys failing the examination is
2. For the first draw, there is a total of 15 balls, 6 red plus 4 white plus 5 blue. You have a 6 in 15 chance of drawing a red ball. Dividing 6 by 15 gives you the probability of drawing a red ball. The probability that red marble is drawn at the first draw is
You then put that red ball back into the box. On the second draw you have a 4 in 15 chance of drawing a white ball. So the probability that white marble is drawn at the second draw is
You then put that white ball back into the box. On the third draw you have a 5 in 15 chance of drawing a blue ball. So the probability that blue marble is drawn at the third draw is
So, by the multiplication rule, the probability that they are drawn in the order: red, white, and blue if each ball is drawn with replacement is
3.
Method 1
When a die is thrown, then possible outcomes are . Outcomes, where the number is odd, are . Outcomes, where the number is greater than 1 and it is odd are .
Let "the number is greater than 1", "the number is odd".
By the definition of conditional probability, the probability that the number is greater than 1, given that it is odd, is calculated by
Method 2
Let possible outcomes be , where the number is odd. Let favourable outcomes be , where the number is greater than 1 and is odd.
Thus, the probability that the number is greater than 1, given that it is odd, is
4. The Pearson's coefficient of skewness, which uses the median, is given by
5. If marks are , then
If marks represent the whole population, then the standard deviation is given by
In Excel 2007 the population standard deviation is calculated via
=STDEVP(2;3;6;2;5;0;4;2).
In Excel 2010 the population standard deviation is calculated via
=STDEV.P(2;3;6;2;5;0;4;2).
In R language the population standard deviation is calculated via
sd(c(2,3,6,2,5,0,4,2))*sqrt(7/8)
In expression sqrt(7/8) number 7 denotes the number of observations minus 1, number 8 denotes the number of observations.
If data is extracted from a sample, then the standard deviation is given by
In Excel 2007 the sample standard deviation is calculated via
=STDEV(2;3;6;2;5;0;4;2).
In Excel 2010 the sample standard deviation is calculated via
=STDEV.S(2;3;6;2;5;0;4;2).
In R language the sample standard deviation is calculated via
sd(c(2,3,6,2,5,0,4,2))
6. The mode is the value that appears most often in a set of data.
This set of data 3, 6, 10, 13, 14, 17, 19, 22 doesn't have mode because any number occurs one time.
In Excel 2007 the mode is calculated via
= MODE(3,6,10,13,14,17,19,22)
In Excel 2010 the mode is calculated via
= MODE.SNGL(3,6,10,13,14,17,19,22)
In R language the function mode() tells you the internal storage mode of the R object, not the value that occurs the most in its argument. You should write functions in R language to calculate the mode
Mode<-function(x){
ux<-unique(x)
ux[which.max(tabulate(match(x,ux)))]
}
7. Observations , , , , , , , are arranged in ascending order, the number of observations is even.
Then the median is defined to be the value of , that is,
In Excel 2007, 2010 the median is calculated via
= MEDIAN(3;6;10;13;14;17;19;22)
In R language the median is calculated via
median(c(3,6,10,13,14,17,19,22))
8. The arithmetic mean of 3, 6, 10, 13, 14, 17, 19 and 22 is given by
In Excel 2007, 2010 the arithmetic mean is calculated via
= AVERAGE(3;6;10;13;14;17;19;22)
In R language the arithmetic mean is calculated via
mean(c(3,6,10,13,14,17,19,22))
9. The data which has been collected for some other enquiry order than the one of immediate interest is called Secondary data.
www.AssignmentExpert.com
Comments