When a fair die is rolled, the number uppermost is equally likely to be any integer between 1 and 6. MATLAB randi function generates uniformly distributed pseudorandom integers. Use this documented MATLAB program (dietoss.m) to simulate a fair die roll of N = 10, 100, 1000 and 10,000 times. For each trial, count the number of sixes thrown by constructing a logical vector and counting the number of times 6 appears. Use MATLAB’s vectorizing commands for logical operators in your solution. Estimate the probability of throwing a six by dividing the number of sixes by 10, 100, 1000 and 10,000 respectively. Compare each to the theoretical expected value of 1/6.