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
MAXImum [283]
3 years ago
15

A company offers a toy in every 6th cereal boxes. what is the probability of:

Mathematics
1 answer:
Fynjy0 [20]3 years ago
6 0

Step-by-step explanation:

1.) A certain brand of cereal has a toy in every box. There are 10 different toys and the toys are distributed among the boxes so that any box purchased is equally likely to contain any one of the 10 toys.

1 a.) A boy has collected 7 different toys. Find the probability that he will get the toys he needs to complete the set if he opens only three boxes.

P(X=3)=(310)(210)(110)=.006

The probability of success changes when a new toy is obtained, which is why the chance of getting a new toy in the next attempt goes down by one-tenth.

1 b.) Another boy only needs one toy to complete the set. Find the probability that he gets the remaining toy by opening no more than 5 boxes.

P(X=1)=1−(910)5=0.40951

1 - dbinom(0, 5, .1)

## [1] 0.40951

The probability for getting the new toy is easily found by subtracting the probability of not getting the toy after five attempts from 1 as seen above. R was used to check the answer.

2.) Suppose that S is the sample space associated to a random process and that E,F are two subsets of S. Prove that if E is a subset of F then P(E)≤P(F) using only the 3 axioms of probability.

Proof: If E⊆F then,

F=E+(F−E)F=E∪(F∩Ec)

Axiom 3 can then be applied due to E and (F∩Ec) being mutually exclusive,

P(F)=P(E)+P(F∩Ec)

Axiom 1 can now be applied to P(F∩Ec) to state:

P(F∩Ec)≥0

Since P(F∩Ec) cannot be less than 0, P(F) must be greater than or equal to P(E)

3.) Suppose that 30% of all drivers stop at an intersection having flashing red lights when no other cars are visible. You decide to secretly monitor this intersection until two cars stop at the intersection when no other cars are visible. Let X denote the number of cars who fail to stop at the intersection while you are watching.

a.) Compute P(X≤3) and P(X≥2) by hand.

P(X≤3)=P(X=0)+P(X=1)+P(X=2)+P(X=3)

(choose(1,0) * .3^2) + (choose(2,1) * .7 * .3^2) + (choose(3,2) * .7^2 * .3^2) + (choose(4,3) * .7^3 * .3^2)

## [1] 0.47178

P(X≥2)=1−P(X≤1)

1 - ((choose(1,0) * .3^2) + (choose(2,1) * .7 * .3^2))

## [1] 0.784

3 b.) What type of random variable is X: binomial, geometric, negative binominal, or Poisson? Negative Binominal

3 c.) Now compute P(X???3) and P(X???2) using appropriate R commands for the distribution you chose in part b).

#Probability of X less than equal to 3

sum(dnbinom(0:3, 2, .3))

## [1] 0.47178

#Probability of X greater than equal to 2

1 - sum(dnbinom(0:1, 2, .3))

## [1] 0.784

4.) A child’s game includes a spinner with four colors on it. Each color is one quarter of the circle. You spin the spinner 5 times and record the number X of blues.

4 a.)Create a table (by hand) displaying the probability mass function of the random variable X if the spinner is fair.

X f(x)

0 (.75)^5

1 (51)(.75)4(.25)

2 (52)(.75)3(.25)2

3 (53)(.75)2(.25)3

4 (54)(.75)(.25)4

5 (.25)5

4 b.) You spin the spinner 5 times and get 4 blues. Perform a hypothesis test (at the Alpha = 0.05 level of significance) to determine if there is enough evidence to reject the game manufacturer’s claim that the spinner is fair, carefully showing each of the four steps. You may use R for computations, but I do not want you to simply use the binom.test() command. (Hint: Your answer to part a) should be helpful when computing your p-value.)

Step 1.) H_o : The spinner is fair; π=14

Step 2.) H_a : The spinner is not fair; π≠14

choose(5,4)*(.75)*(.25)^4 + (.25)^5

## [1] 0.015625

Step 3.) P-test: p-value = 0.015625; Which is less than 0.05.

Step 4.) Since the p-value is less than the alpha value of 0.05, we must reject the null hypothesis meaning there is statistical evidence of the spinner being unfair.

4 c.) What would a Type II error be in the context of the hypothesis test you just performed?

A Type II error would be when we fail to reject the null hypothesis of the spinner being fair, when it is really unfair.

5.) Find the expected value and variance of this discrete random variable when n=5. Justify your answer.

E(X)=(15)+(25)+(35)+(45)+1=(155=3

The expected value is 3, which tells us the weighted average of our random variable X.

Var(X)=(−2)2(15)+(−1)2(15)+0(15)+(1)2(15)+(2)2(15)=(45)+(15)+(15)+(45)=2

The variance is 2, which is the measure of how spread out the random variable X is from its expected value.

Bonus.) Exercise 2.9 in the textbook.

a.) n = 10; and P(X≤1) represents the probability of no one having the same birthday out of the ten people.

P(X≥2)=1−P(X≤1)=1−((365365)∗(364365)∗(363365)∗(362365)∗(361365)∗(360365)∗(359365)∗(3583655)∗(357365)∗(356365))=0.11695

b.) Kept increasing n until P(X≥2)=0.5 and obtained that the smallest group of random people would have to be 23

Collaborated with Maria and Akeem

You might be interested in
Right ? Or wrong help
krek1111 [17]

Answer:

I think thats right

Step-by-step explanation:

4 0
3 years ago
A pendulum is raised to a certain height and released from point A, as shown in the image below. At its release, the pendulum is
sweet-ann [11.9K]

The maximum height that the pendulum can reach will be 45 meters.

<h3>How to calculate the height?</h3>

It should be noted that the total energy at A should be equal to the total energy at B.

Therefore, this will be calculated thus:

1/2(14)² + 10(35) = 1/2(0)² + mgH

98 + 350 = 10H

448 = 10H

H = 448/10

H = 44.8 meters

H = 45 meters approximately

Learn mote about height on:

brainly.com/question/983412

#SPJ1

7 0
2 years ago
Read 2 more answers
One angle of a right triangle measures 19∘. What is the measure of the other angle?
MArishka [77]

Answer:

71°

Step-by-step explanation:

The equation should be 19+90+x=180

Step 1: Add 19+90=109

Step 2: Subtract 180-109=71

So, you're answer is 71°

7 0
3 years ago
how much does britney need to buy 2 pearl bracelets and 2 emerald rings emerald ring price 6,395.00 Pearl bracelets prince 5,314
sineoko [7]
6,395.00 x 2 = 12,790

So $12,790 for the emerald rings.


5,314.00 x 2 = 10,628

So $10,628 for the pearl bracelets.

12,790 + 10,628 = 23,418

So $23,418.00 for all four pieces of jewelry.
Hope it helps!


7 0
3 years ago
Read 2 more answers
14. Solve: (a) 2y - 1/2 = -1/3 (b) 6 + 5 (a - 1) = 30
Strike441 [17]

A)2y - 1/2 = -1/3

2y=-1/3+1/2

FIND THE LCM TO MAKE THE FRACTIONS LIKE FRACTIONS

LCM OF 3 AND 2 IS 6

-1/3*2=-2/6

1/2*3=3/6

-2/6+3/6=1/6

2y=1/6

y=1/6 ÷ 2

TAKING THE RECIPROCAL,

RECIPROCAL OF 2 IS 1/2

y=1/6*1/2

y=1/12

B) 6 + 5 (a - 1) = 30

6+(5)*(a)+(5)*(−1)=30(Distribute)

6+5a+−5=30

(5a)+(6+−5)=30(Combine Like Terms)

5a+1=30

5a=30-1

5a=29

a=29/5

15.sum of three consecutive integers=48

let the numbers be x ,x+1,x+2

x+x+1+x+2==48

3x+3=48

3x=48-3

3x=45

x=45/3

x=15

x+1=15+1=16

x+2=15+2=17

the numbers are 15,16,17

​​  

7 0
3 years ago
Other questions:
  • Picture is shown !!!!
    10·2 answers
  • Martha works at a small jewelry store. She designs 2 rings in the first hour. Every additional hour, she designs 3 new rings. Se
    12·2 answers
  • What is the quotient
    9·1 answer
  • What is the measure of an angle whose degree is five times its compliment?​
    5·1 answer
  • Andrew has pencils and erasers. The ratio of the number of his
    11·1 answer
  • Use the intersect method to solve the equation.<br> x² - 1 = -x²+7
    14·1 answer
  • What is the solution to the inequality -6( p - 8) &lt; -12?<br> please help!!
    8·1 answer
  • Look at the image shown below
    5·1 answer
  • Solve for X ! <br><br> answer quickly please
    6·1 answer
  • Which table represents a proportional relationship that has a constant of proportionality equal to 0.8?
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!