(Sandipan Dey

26 October 2016)

Problem 1 Considering the probability distribution associated with rolling 3 fair dice labelled d1, d2 and d3, calculate the probability of the following: Compute the probability that the sum of the dice is greater than 12 and less than 18. Compute the probability that the sum is even. Compute the probability that the mean is exactly 4. The problem is from the following stackoverflow post: http://stackoverflow.com/questions/40253035/how-to-compute-the-probability-with-rolling-3-fair-dice-for-some-specific-condit/40254805#40254805

Theoretical Solution with Classical Definition of Probability Total number of points in the Sample Space that are mutually exclusive, exhaustive and equally likely = 6^ 3 = 216 .

. Number of cases favorable to the events in (1) is 55 . Here are all the 55 cases. Number of cases favorable to the events in (2) is 108 .

. Number of cases favorable to the events in (3) is 25 .

. Hence, by the classical definition of probability, the corresponding probabilities are 55 / 216 = 0.2546296 , 108 / 216 = 0.5 and 25 / 216 = 0.1157407 respectively. actual.probs <- rep ( 0 , 3 ) for ( d1 in 1 : 6 ) for ( d2 in 1 : 6 ) for ( d3 in 1 : 6 ) { s <- d1 + d2 + d3 actual.probs [ 1 ] <- actual.probs [ 1 ] + ( ( s > 12 ) && ( s < 18 ) ) actual.probs [ 2 ] <- actual.probs [ 2 ] + ( ( s %% 2 ) == 0 ) actual.probs [ 3 ] <- actual.probs [ 3 ] + ( ( s / 3 ) == 4 ) } actual.probs <- actual.probs / 6 ^ 3

Solution with Simulation Now let’s try to obtain the solution using simulation.

Let’s simulate an experiment of throwing 3 dice together for a number of trials.

Then let’s repeat the experiment for a number of times num.repeat <- 100 num.trials <- 10 ^ 3 sim.probs <- vector ( "list" , 3 ) for ( j in 1 : num.repeat ) { res <- .rowMeans ( replicate ( num.trials , { Here is a visual comparison between the simulated and the actual (theoretical) probabilities for each of the 3 cases, the theoretical probabilities are represented as dotted lines. As can be seen, in general, as the number of trials increase, the simulated probability tends to more accurately estimate the theoretical probabilities. Now let’s find the impact of the number of trials on the mean and absolute difference from the theoretical probabilities w.r.t. the computed probabilities with simulation.

Problem 2 Let Θ be an unknown constant. Let W 1 ,W 2 ,…,W n be independent exponential random variables each with parameter 1. Let X i =Θ+W i . It can be shown that Θ^ ML =min i X i . Now, we have been asked to construct a confidence interval of the particular form [Θ^−c,Θ^], where Θ^=min i X i and c is a constant that we need to choose. For n=10, how should the constant be chosen so that we have a 95% confidence interval? (Give the smallest possible value of c.) Your answer should be accurate to 3 decimal places. This problem appeared in the final exam of the edX course MITx: 6.041x Introduction to Probability – The Science of Uncertainty. n <- 10 th <- 100 exp.samp <- function ( ) { w <- rexp ( n , 1 ) x <- th + w th.hat <- min ( x ) th.hat } ntrial <- 10 ^ 6 th.hat <- replicate ( ntrial , exp.samp ( ) ) ## 95% ## 0.3002047 print ( mean ( th.hat - c <= th ) ) ## [1] 0.95 hist ( th.hat - th , xlab = expression ( hat ( theta ) - theta ) , main = expression ( hat ( theta ) - theta ) )



Problem 3 Find the area of the following regions with Monte-Carlo Simulation. Let’s use Monte-Carlo-Integration to compute the area of the above green shaded region and then compare with the actural area enclosed by the curves. n <- 10 ^ 6 df <- data.frame ( x = runif ( n ) , y = runif ( n ) ) indices <- which ( ( ( df $ y ) ^ 2 <= df $ x ) & ( ( df $ x ) ^ 2 <= df $ y ) ) print ( paste ( 'Area with Monte-Carlo Integration = ' , length ( indices ) / n ) ) ## [1] "Area with Monte-Carlo Integration = 0.332888" res <- integrate ( function ( x ) sqrt ( x ) - x ^ 2 , 0 , 1 ) print ( paste ( 'Actual Area = ' , res $ value , ' with absolute error' , res $ abs.err ) ) ## [1] "Actual Area = 0.333333408167678 with absolute error 7.80933322530327e-05" Again let’s use Monte-Carlo-Integration to compute the area under the below sinc function in between the vertical lines (-3,3) and x axis then compare with the actual area. The sinc function is defined as follows, by removing the discontinuity at 0 .|

eq <- 10 ^ 6 xmax <- 3 df <- data.frame ( x = runif ( n , - xmax , xmax ) , y = runif ( n , - 0.25 , 1 ) ) indices <- which ( ( df $ y > 0 ) & ( abs ( df $ x ) <= xmax ) & ( df $ y < eq ( df $ x ) ) ) print ( paste ( 'Area with Monte-Carlo Integration = ' , 6 * 1.25 * length ( indices ) / n ) ) ## [1] "Area with Monte-Carlo Integration = 3.700785" res <- integrate ( eq , - 3 , 3 ) print ( paste ( 'Actual Area = ' , res $ value , ' with absolute error' , res $ abs.err ) ) ## [1] "Actual Area = 3.69730505599894 with absolute error 4.1048332022e-14" Again let’s use Monte-Carlo-Integration to compute the area under the Standard

Normal Curve between the vertical lines and then compare the values with those obtained from the actual cdf Φ(.) values available from the standard normal table.

Again let’s use Monte-Carlo-Integration to compute the area under the pdf of the Student’s t-distribution with degrees of freedom ν = 5 between the vertical lines and then compare the values with those obtained from the actual cdf values availble from the t-table.

Advertisements