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
The value of k<br> 4x^2 +20k+k
Wittaler [7]

Step-by-step explanation:

You want the to find the value of k such that the y coordinate of the vertex is 0.

0=x2−6x+k

The x coordinate, h, of the vertex is found, using the following equation:

h=−b2a

h=−−62(1)=3

Evaluate at x = 3:

0=32−6(3)+k

k=9

8 0
3 years ago
Please help and ty all for yall's help
Triss [41]
It is 2/5 and Brainly is saying it needs to be 20 characters long

Answer:
2/5
6 0
3 years ago
Read 2 more answers
Please answer now!! (Math)
OleMash [197]

Answer:

2nd option

Step-by-step explanation:

Simplify first what is in the parenthesis before distributing the exponent outside would help.

Remember that negative exponents simply means that their on the wrong side of the fraction. So if you find a variable with a negative exponent as a numerator, you bring them down and when it is found as a denominator, you bring them up.

Also when you distribute your exponents, you always multiply it to each exponent inside the parenthesis.

Look at the attached picture for the solution

5 0
3 years ago
Read 2 more answers
The expression 3+(2+n) is equivalent to?
Harlamova29_29 [7]

Answer:

5+n

you have to distribute the “+” so you can drop the parenthesis. Then, you have 3+2+n. Add and you end up with 5+n

7 0
3 years ago
Pls help with this i only need the equation
ratelena [41]
Slope -5/4
y-intercept -0,5
use form y=mx+b
y=-5/4x+-5
8 0
3 years ago
Other questions:
  • Draw an array for a known 10 facts then subtract 1 from each row to find the product
    5·1 answer
  • Tan(arcsin(x)) and its domain ...?
    15·1 answer
  • Help pretty pleeeeeeease!
    10·1 answer
  • Jim needs to rent a car. A rental company charges $21 per day to rent a car and $0.10 for every mile driven. He will travel 250
    11·1 answer
  • A super has a key ring with 12 keys. He has forgotten which one opens the apartment he needs to enter. What is the probability h
    11·1 answer
  • Solve 3^(4x+5)=(1/3)^(x+10) for x. Please show work
    9·1 answer
  • The camp director is putting 85 sack lunches in boxes for a picnic. She can fit 8 lunches in each box. She does the division pro
    14·1 answer
  • There exist two complex numbers $c$, say $c_1$ and $c_2$, so that $3 + 2i$, $6 + i$, and $c$ form the vertices of an equilateral
    9·1 answer
  • Cindy paid $2.58 for a 2/3 pounds of sunflower seeds. how much does each pound of sunflower cost?
    8·1 answer
  • A multiple choice test has two parts. There are 4^12 ways to answer the 12 questions in Part A. There are 4^5 ways to answer the
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!