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
Mason use ⅙ of a gram of honey to make 3/10 of a pan of pudding. How many grams of honey are needed to make a full pan of puddin
frozen [14]

Answer:

I was going to give the answer but i keep getting it wrong, I am so sorry for wasting your time. IK i shouldn't be answering if I dont have the answer but i need the points. I feel terrible about this.

Step-by-step explanation:

6 0
3 years ago
Choose the correct discriminant, then
irina [24]

Answer:

3

Step-by-step explanation:

Order of Operations; PEMDAS  

Parentheses  

Exponents  

Multiplication & Division (Left to Right) (ex: 10x2÷5) You would do whatever comes left for Multiplication or Division.  

Addition & Subtraction (Left to Right) (ex: 10-2+5) You would do whatever comes left for Addition & Subtraction.

3x+6 =

(9+6=15)

(6x2=12)

(12-15=<u>3</u>)

7 0
3 years ago
Select the postulate of equality or inequality that is illustrated.
Airida [17]
Hello,
"<" is transitive.
a<b
b<2 ==>a<b<2==>a<2

4 0
3 years ago
Read 2 more answers
Let s be the annual sales​ (in millions) for a particular electronic item. The value of s is 54.554.5 for 20062006. What does s​
Kobotan [32]

Answer:

  54.5 is the annual sales in millions for a particular electronic item.

Step-by-step explanation:

The problem statement tells you the meaning of s. It doesn't change meaning when you give it a value.

5 0
3 years ago
5 lb. 10 oz. − 3 lb. 1 oz. = lb. oz.
Darina [25.2K]

Answer:

2 lbs  9 oz

Step-by-step explanation:

Lets line up the ounces and pounds and subtract

  5 lb. 10 oz.

− 3 lb. 1 oz.

------------------------

2 lbs  9 oz


3 0
3 years ago
Read 2 more answers
Other questions:
  • How do you rearrange x = 3g + 2 to make g the subject
    6·1 answer
  • A circular gear turns 60 per hour. through how many radians does it turn in a 24-hour day?
    13·2 answers
  • Analyze the diagram below and complete the instructions that follow. find tan c
    14·1 answer
  • HELP! !! How are angle 1 and angle 2 related?
    14·2 answers
  • Juno boots 57 oranges in bags each bag holds 6 oranges use the area 2 divided​
    10·1 answer
  • Karen traveled 480 miles in 6 hours. She then increased her speed by 20 miles. How long did it take her to travel the next 560 m
    12·1 answer
  • What is the ratio of the length of the rectangle to its width. 24 and 20
    6·1 answer
  • Bobby describes two lines to Frank, telling him that beginning at point A, line #1 goes up 3 units and to the right 8 units, whi
    5·1 answer
  • Please help me. It's literally math!
    13·1 answer
  • Please help i need it
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!