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
You have a garden in your backyard that measures 15 meters by 20 meters. You want to place stepping stones around the perimeter
Anettt [7]

Answer:

0.5 m

Step-by-step explanation:

Given that the dimensions of the garden are 15 meters by 20 meters.

The area of the new garden (original garden + stone placed around the perimeter) is 336m².

Let d be the width of the border having stepping stones as shown in the figure. The shaded region in the figure is the area having stepping stones.

The area including the shaded region = (15+2d)(20+2d) m^2

\Rightarrow 336  = (15+2d)(20+2d) \\\\\Rightarrow 336  = 300+ 70 d +4d^2 \\\\\Rightarrow 4d^2 +70d+300-336=0 \\\\\Rightarrow 4d^2 +70d-36=0 \\\\\Rightarrow 2d^2 +35d-18=0 \\\\\Rightarrow 2d^2 +36d-d-18=0 \\\\\Rightarrow (2d-1)(d+18)=0 \\\\\Rightarrow (2d-1)=0, \; or \; (d+18) \\\\\Rightarrow d= 0.5\;or -18 \\\\

As the width of the stone border can't be a negative value, so taking the positive value.

Hence, the width of the stone border is 0.5 m.

So, the wi

7 0
3 years ago
What is the difference from point F at (2,-3) to point G at (9,-3)? Show all work.
LenaWriter [7]
A 7 units.  -3 is the same in each, so you just find the difference between 9 and 2
5 0
2 years ago
Somebody please do this right for me
Natasha_Volkova [10]

Step-by-step explanation:

What do u mean by reflected on the axis? You want the equation?

4 0
3 years ago
Is 4 over 6 greater or less than 12 over 12
weqwewe [10]
To compare fractions with unlike denominators convert them to equivalent fractions with the same denominator. Compare fractions: If denominators are the same you can compare the numerators. The fraction with the bigger numerator is the larger fraction.
8 0
2 years ago
When constructing parallel lines with a compass and straight edge how should you start construction
Andrews [41]

Draw two lines that never intersects and those are parallel line. A compass and straightedge helps you make the lines straight.

8 0
2 years ago
Other questions:
  • Thomas wrote the expanded form of (5_2^4 below.
    13·2 answers
  • Evaluate the expression m + o for m = 9 and o = 7.
    15·2 answers
  • The distance around the lake is 0.75 mile. Ryan ran around the lake 3 times on Saturday. How far did he run?
    7·1 answer
  • Order 0.709, 0.710, 0.79, and 0.079 from smallest to largest.
    12·2 answers
  • If LM = 41 – 2x and NP = 7x + 5, find LM.
    9·1 answer
  • Please its past due, will give brainlist, there is a pt. 2
    14·2 answers
  • A racing car travels around a 2k circuit at 120km/h.
    7·1 answer
  • Ratio Question:
    10·2 answers
  • Can you help solve pleas
    11·1 answer
  • How to find slope within two sets of points
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!