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
If the typical balance on Lucy's credit card is $650 and the interest rate (APR) on her credit card is 18%, how much in interest
mafiozo [28]

General Idea:

Amount \; Charged \; in \; a \; Month \; = \; Monthly \; Interest \; Rate \; \times Typical \; Creditcard\; Balance\\ \\

Amount \; Charged \; in\; a\; month =\frac{18\%}{12} \times 650 \; = 0.015\times650=9.75

Conclusion:

Amount of interest that Lucy to be charged in a typical month is <u>$9.75</u>

7 0
3 years ago
Read 2 more answers
please help!!!!!! Thanks!!
xxTIMURxx [149]

Answer:

60

Step-by-step explanation:

8 0
3 years ago
Read 2 more answers
What is the probability of drawing yellow marble followed by a red marble from a bag containing 12 yellow marbles 14 red marbles
Zinaida [17]
The probability of drawing both without replacing either is :

14/41 * 12/40 = 7/41 * 3/5 = 21/205

The probability of drawing both WITH replacement is:

14/41 * 12/41 = 168/ 1681
7 0
3 years ago
Find the surface area of the prism.<br><br> Explain how you got your answer pls
zavuch27 [327]

Answer:

Step-by-step explanation: I’m too lazy to do it but just substitute the values into the formula of a Rectangular prism Surface Area

3 0
2 years ago
Read 2 more answers
water main construction a water main is to be constructed with a 20% grade in the north direction and a 10% grade in the east di
ArbitrLikvidat [17]

The value of the angle θ required in the water main for the turn from north to east is 87.40°.

According to the statement

We have to find that the value of the angle.

So, For this purpose, we know that the

An angle is created when two straight lines or rays meet at a standard endpoint.

From the given information:

a main is to be constructed with a 20% grade within the north direction and a tenth grade within the east direction.

Then

Let n = North

and e = east

Then

using vectors,

n =  j + 0.20 k

e = i + 0.25 k

And the

n · e = 1x0 + 0x1 + 0.20×0.25 = 0.05

Now take magnitude then

|n|·|e| = i(1² + 0.20²)·i(1²+0.25²) = 1.105

Now,

E° = arccos((n · e)/|n|·|e|)

E° = arccos(0.05/1.105)

E° = arccos (0.0452)

E° = 87.40°

So, The value of the angle θ required in the water main for the turn from north to east is 87.40°.

Learn more about angle here

brainly.com/question/24368895

#SPJ4

8 0
1 year ago
Other questions:
  • Sarah wrote that (3^5)^7 = 3^12. Correct her mistake. Write an exponential expression using a base of 3 and exponents of 5,7,12
    7·2 answers
  • Graph the function f(x)=6x^5+8x^4-7x^3-5x^2+10 by making a table of values.
    10·1 answer
  • Find the sum of the sequence. 45+46+47+48+...+108
    5·2 answers
  • Which ordered pairs in the form (x, y) are solutions to the equation 7x−5y=28 ? Select each correct answer. <br>(7, 9) <br>(−1, 
    5·1 answer
  • Answer This Question Correctly For Brainliest (Wrong Answers Will Be Reported!)
    14·1 answer
  • Plz help me i have tryed and i dont know plz help
    8·1 answer
  • Y+1=3(x-4) Which is the ordered pair to the solution??
    6·1 answer
  • Simplify 5a – (2a + 6)
    11·2 answers
  • What is the range of the cluster in the scatter plot? Between 5 m and 7 m Between 1 m and 6 m Between 1 s and 9 s Between 1 s an
    10·1 answer
  • A bus traveled south for 520 kilometers. The entire trip took 3 hours. Calculate the velocity.
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!