Dice Rolling simulation in MATLAB, using relative frequency approach
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Achyuth S.S
le 11 Nov 2022
Commenté : Achyuth S.S
le 12 Nov 2022
Consider the dice rolling experiment. Use the relative frequency approach to assign the probability of the event, A = {sum of two dice = 5}. Simulate the tossing of two dice using the MATLAB code. The results of this dice tossing simulation must approximately follow the results shown in Table 1.

Réponse acceptée
Image Analyst
le 11 Nov 2022
Hint:
n = 1000;
rolls = randi(6, n, 2)
sumOfRolls = sum(rolls, 2)
3 commentaires
Image Analyst
le 12 Nov 2022
Modifié(e) : Image Analyst
le 12 Nov 2022
Looks like you figured it out since you Accepted the answer (thank you 🙂).
I guess you finally realized that it is the number of times the rolls sum to 5 in n tosses.
format short g
alln = 1000 : 1000 : 10000;
for k = 1 : length(alln)
n = alln(k);
rolls = randi(6, n, 2);
sumOfRolls = sum(rolls, 2);
% Count how many times the sums equal 5.
nA(k) = sum(sumOfRolls == 5);
% Compute fraction of 5's
fract(k) = nA(k) / n;
end
nA
fract
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!