The following program is to be written in matlab. I need help with parts A and B please.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
The following program is to be written in matlab. I need help with parts A and B please.
Problem 2: Dice throw probabilities
You want to know the probability of a specified outcome when summing two (six-sided) dice.
(a) Write a program that uses loops to calculate the number of times each possible outcome (sum)
occurs.
Your program should return two arrays:
A list of the possible outcomes (sums) – this will be numbers between 2 and 12, the possible
sums of 2 dice.
A list of the corresponding probabilities for each possible outcome. Make sure that all of
your probabilities add up to 1.
(b) Write another program that "tosses" two dice with random outcomes 1-6 and computes the sum,
100 times. Report the number of times that each possible sum occurs. Compare this to the true
probabilities calculated in part (a).
Transcribed Image Text:Problem 2: Dice throw probabilities You want to know the probability of a specified outcome when summing two (six-sided) dice. (a) Write a program that uses loops to calculate the number of times each possible outcome (sum) occurs. Your program should return two arrays: A list of the possible outcomes (sums) – this will be numbers between 2 and 12, the possible sums of 2 dice. A list of the corresponding probabilities for each possible outcome. Make sure that all of your probabilities add up to 1. (b) Write another program that "tosses" two dice with random outcomes 1-6 and computes the sum, 100 times. Report the number of times that each possible sum occurs. Compare this to the true probabilities calculated in part (a).
Expert Solution
Step 1

In case of any queries, please revert back.

============== FUNCTION 1 BELOW ====================

function [arr1,arr2] = probabFunc()
arr1 = [];
arr2 = zeros(1,11);
for i=1:6
for j=1:6
arr2(i+j-1) = arr2(i+j-1)+1;
end
end
for i=2:12
arr1(end+1) = i;
end
  
arr2 = arr2./36;
disp(arr2);
end

probabFunc()

================ FUNCTION 2 BELOW ======================

function [arr2] = checkFunc()
arr2 = zeros(1,11);
for i=1:100
sum = randi([1 6],1) + randi([1 6],1);
arr2(sum-1) = arr2(sum-1)+1;
end
arr2=arr2./100;
end

checkFunc();

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 4 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY