Math Problem Statement

  1. An urn contains 3 Blue, 4 Green, and 5 Yellow marbles, labeled from 1 to
  2. B1...B3,G4, ...G7, Y8,...Y12. One marble is randomly selected.
  3. List the sample space as {B,G,Y} and their corresponding probabilities: P(B)=____; P(G)=_; P(Y)=__
  4. Now we run an experiment on Excel to check the above probabilities.

Method 1:

  1. In A1, type in "=randbetween(1,12)". This gives the number of the marble
  2. in B1, type in"=if(A1<4, "B", if(A1>7,"Y","G")) ". This changed the number to the color.
  3. Copy A1:B1 to A2:B200. This gives a sample for 200 experiments.
  4. Use B1:B100 as the sample, construct the frequency table by using pivot table.

Method 2: you can type in B, B,B, G,G,G,G,Y,Y,Y,Y,Y in A1:A12, then in B1

=index($A$1:$A$12, randbetween(1,12) ,1)

and copy B1 to B2:B200 . This will also generate 200 samples.

  1. Use both method to get a frequency table and compare with the true probabilities in 2), and discuss how much differences you see.

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Probability
Random Sampling
Data Analysis
Law of Large Numbers

Formulas

P(B) = 3/12 = 0.25
P(G) = 4/12 = 0.333
P(Y) = 5/12 = 0.417

Theorems

Law of Large Numbers

Suitable Grade Level

Grades 9-12