Set+1 Descriptive+statistics+Probability SOLUTIONS NAVIN
Set+1 Descriptive+statistics+Probability SOLUTIONS NAVIN
1. Look at the data given below. Plot the data, find the outliers and find out 𝜇, 𝜎, 𝜎 2
Questions referred to from Aczel A., Sounderpandian J., Complete Business Statistics (7ed.)
2.
Questions referred to from Aczel A., Sounderpandian J., Complete Business Statistics (7ed.)
3.
Questions referred to from Aczel A., Sounderpandian J., Complete Business Statistics (7ed.)
4. AT&T was running commercials in 1990 aimed at luring back customers who had switched to
one of the other long-distance phone service providers. One such commercial shows a
businessman trying to reach Phoenix and mistakenly getting Fiji, where a half-naked native on a
beach responds incomprehensibly in Polynesian. When asked about this advertisement, AT&T
admitted that the portrayed incident did not actually take place but added that this was an
enactment of something that “could happen.” Suppose that one in 200 long-distance telephone
calls is misdirected. What is the probability that at least one in five attempted telephone calls
reaches the wrong number? (Assume independence of attempts.)
R CODE:
d = rep(c("MISS","NO_MISS"),times=c(1,199)) #Creating a sample dataset of 200 outcomes, with
only 1 event of Mis-routing
#event = sample(d,5,replace=TRUE) #Sample of 5 call scenarios
event_1000_rep = replicate(1000,sample(d,5,replace=TRUE)) #Repeating experiment 1000
times
i=1
z=0
while(i<=1000)
{
if("MISS" %in% event_1000_rep[,i]) #Checking if we have even one MISS among the 5 calls
z=z+1
i=i+1
}
p = z/1000
cat("Probability",p)
Questions referred to from Aczel A., Sounderpandian J., Complete Business Statistics (7ed.)
5. Returns on a certain business venture, to the nearest $1,000, are known to follow the following
probability distribution
x P(x)
-2,000 0.1
-1,000 0.1
0 0.2
1000 0.2
2000 0.3
3000 0.1
(i) What is the most likely monetary outcome of the business venture?
ANS: Max. P = 0.3 for P(2000). So most likely outcome is 2000
(iii) What is the long-term average earning of business ventures of this kind? Explain
ANS: Weighted average = x*P(x) = 800. This means the average expected earnings over a long
period of time would be 800(including all losses and gains over the period of time)
(iv) What is the good measure of the risk involved in a venture of this kind? Compute this
measure
ANS: P(loss) = P(x= -2000)+P(x=-1000)=0.2. So the risk associated with this venture is 20%.
Questions referred to from Aczel A., Sounderpandian J., Complete Business Statistics (7ed.)