1. Use Monte Carlo (MC) to numerically estimate E[X] and put a confidence interval using 2SE where SE is MC standard err

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

1. Use Monte Carlo (MC) to numerically estimate E[X] and put a confidence interval using 2SE where SE is MC standard err

Post by answerhappygod »

1 Use Monte Carlo Mc To Numerically Estimate E X And Put A Confidence Interval Using 2se Where Se Is Mc Standard Err 1
1 Use Monte Carlo Mc To Numerically Estimate E X And Put A Confidence Interval Using 2se Where Se Is Mc Standard Err 1 (93.3 KiB) Viewed 31 times
1. Use Monte Carlo (MC) to numerically estimate E[X] and put a confidence interval using 2SE where SE is MC standard error. •+∞ E[X] = * xf (x)dx where X-Weibull (a = 2, ß = 3) Solution: In R simulation Generate a large sample (T= 2000) from the Weibull distribution. Find average of X using function mean. Notice that you have T values for X. Calculate SE of X using generated X's and average of X. Use SE of X to find SE of sample mean (average of X). run T = 2000 . All R codes X = rweibull(T,shape =2, scale=3) EX_hat mean(X) SE_hat=sd(X) SE_hat_EX_hat = SE_hat/sqrt(T-1) CI_LB = EX_hat - 2*SE_hat_EX_hat CI_UB = EX_hat + 2* SE_hat_EX_hat
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply