1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
frez [133]
3 years ago
12

Simulate the rolling of two dice 10,000 times. (b) Identify which rolls of the dice are in the event A, the dice add up to a per

fect square (4 or 9). Determine what proportion of the 10,000 rolls are in A. (c) Identify which rolls of the dice are in the event B, the dice add up to an even number. Determine what proportion of the 10,000 rolls are in B. (d) Find out which rolls are in A ∩ B. Find the proportion that are in A ∩ B. How does that compare to the proportion in A multiplied by the proportion that are in B?
Mathematics
1 answer:
dexar [7]3 years ago
4 0

Answer:

Answer explained below

Step-by-step explanation:

(a)

Simulate the rolling of two dice 10,000 times D1 and D2 are the 10,000 results of roll of dice 1 and dice 2.

D1 = sample(c(1:6), 10000, replace = TRUE)

D2 = sample(c(1:6), 10000, replace = TRUE)

Sum = D1 + D2

(b)

The event A, the dice add up to a perfect square (4 or 9).

A = Sum[Sum == 4 | Sum ==9]

Proportion of A, P(A) = 0.189

length(A) / length(Sum)

(c)

The event B, the dice add up to an even number.

B = Sum[Sum %% 2 == 0]

Proportion of B, P(B) = 0.5049

length(B) / length(Sum)

(d)

The  rolls are in A ∩ B (common to both A and B)

> intersect(A,B)

[1] 4

The proportion that are in A ∩ B is 0.0792

length(Sum[Sum == 4]) / length(Sum)

P(A) * P(B) = 0.189 * 0.5049 = 0.0954

The proportion in A multiplied by the proportion that are in B is not equal to P(A ∩ B)

(e)

Of the rolls in which B occurs, the proportion of those rolls are also in A is 0.4190476

length(Sum[Sum == 4]) / length(A)

This proportion is greater than the P(A) calculated in part (b).

You might be interested in
Jane has to stickers /
dimulka [17.4K]

Answer:

Andy basically has two stickers

4 0
2 years ago
Joel walked of a mile to the store, 1. of a mile to the library,
Ivahew [28]

Answer:

4 miles?

Step-by-step explanation:

7 0
3 years ago
Read 2 more answers
PLEASE HELP ASAP
Svetradugi [14.3K]

Answer:

(y+2)=2(x−3)

Or

(y−4)=2(x-6)

Or

y=2x−8

Step-by-step explanation:

4 0
2 years ago
Read 2 more answers
Add 8 5/9 + 3 5/6 + 6 4/9
erica [24]
18.8333333333is the answer
5 0
3 years ago
Read 2 more answers
The ratio of two numbers is 6 : 8. The sum of the numbers is 28. What are the two numbers?
Otrada [13]

Answer:

12 and 16 or 12:16

6 x 2 = 12

8 x 2 =16

12 + 16 = 28

Step-by-step explanation:

5 0
3 years ago
Other questions:
  • What's 5 divided by x squared explain
    13·2 answers
  • Joanna works two days each
    10·1 answer
  • A bag contains 5 oranges, 4 bananas, and 3 apples. If Mr. Hall reaches in the bag and chooses one piece of fruit at random, what
    6·1 answer
  • Peter uses cubes to build a figure in shape of the letter X. What is the fewest unit cubes that Peter can use to build the figur
    9·2 answers
  • What is the mixed number for 14/3
    6·2 answers
  • Andy is hanging wallpaper in his kitchen. He is able to cover of the walls in the room using 6 rolls of wallpaper. What is the n
    8·1 answer
  • which expression represents the perimeter of the rectangle above? (3x-3)(3x-1) a.6x+2 b.12x-8 c.6x-4 d.12x+2
    15·2 answers
  • a pencil cells at 18 Ghana cedis in an eraser class at 12 Ghana cedis how much will you pay if you buy three pencils and for era
    12·1 answer
  • The students at a school assembly
    5·1 answer
  • A diagonal line labelled CD intersects a horizontal line labelled AB at point E forming an angle AEC. 
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!