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
Pls answer the question
mariarad [96]

Option C:

(11 + 8) + 1 = 11 + (8 + 1)

Solution:

Let us first define the associative property of addition.

<u>Associative property of addition:</u>

(a + b) + c = a + (b + c)

Option A: 5 + 3 = 3 + 5

This represents a commutative property of addition.

i.e. a + b = b + a.

So, it is not true.

Option B: 6 + 1 = 6 + 1

This is not under the property of associative.

It is not true.

Option C: (11 + 8) + 1 = 11 + (8 + 1)

(a + b) + c = a + (b + c)

This reflects the associative property of addition.

It is true.

Option B is the correct answer.

Hence (11 + 8) + 1 = 11 + (8 + 1) illustrates the associative property of addition.

8 0
3 years ago
True or false.
SashulF [63]
The answer for the given question above is FALSE. <span>The sine of an angle in a right triangle is equal to the ratio of the length of the side OPPOSITE to the angle divided by the length of the hypotenuse. I hope this answer helps.</span>
8 0
3 years ago
Read 2 more answers
A transversal is a line that........
Gemiola [76]
A transversal is a line that intersects 2 other lines.
8 0
3 years ago
The image point of A after a translation right 2 units and down 1 unit is the point B (10,−1). Determine the coordinates of the
Simora [160]

Answer:

pre image point A (8,0)

Step-by-step explanation:

I guess thats the answer

8 0
2 years ago
Read 2 more answers
Derive the equation of the parabola with a focus at (0, −4) and a directrix of y = 4
Ierofanga [76]
We are given with the focus coordinates of (0,-4) and a directrix equation of y=4,. we are asked for the equation of the parabola. The vertex of the parabola should lie in between the directrix and the focus. Hence, vertex should be at (0,0). the curve goes downwards. and the length of the latus rectum is 4. Hence the equation is x2=-16y
7 0
3 years ago
Other questions:
  • Does the equation x^2 -4x + y^2 = -3 intersect the x-axis?
    11·2 answers
  • A water tank is leaking water at a rate of 300 gallons per minute. What is this rate in gallons per second
    7·2 answers
  • 2ftx2ftx2ft= what is the square area
    6·1 answer
  • Mr. Rosenberger asked his students to use the distributive property to rewrite the expression 18 (24) by using friendlier number
    10·1 answer
  • If a trend line has a slope of -4, what is true about the data? Select all that apply.
    6·1 answer
  • A circular crop field has an irrigation system in which a pipe, with one end attached to a tower at the center of the field, tur
    10·1 answer
  • .Nisha bought a backpack that was on sale at 35% off for $63. How much was the original price of the backpack?
    9·2 answers
  • A lemonade recipe calls for 6 gallons of water how many quarts of water are needed for the recipe
    9·2 answers
  • Find the measure of the missing angles. Need help ASAP
    6·1 answer
  • Find the constant rate of change for each linear function and interpret its meaning
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!