Please use R language to solve.Q1. Monte Carlo method (MC) provides a numeric approximation to find the probability of absolute value of a standard normal random variable less than 1, i.e. P(IZ| < 1), where Z N(0, 1). To do so, one may first generate 10, 000 random numbers from N(0,1) and then compute the proportion of the numbers that have absolute value less than 1. Code your own script for MC method to estimate P(Z 1)
OR
OR