-
Take your collection of M&Ms and randomly divide them into 2
piles of about the same size. You need NOT be exact, just divide them roughly
into 2 similar sized piles.
-
In each pile, let
T = the total number of M&Ms,
B = the number of brown M&Ms,
R = the number of red M&Ms,
Y = the number of yellow M&Ms, and
O = the number of M&Ms that are green, orange or blue.
Record the numbers for each pile above, on the appropriate lines.
-
Each of your two piles of M&Ms will be used to create three different
individuals for our population. All of the individuals will turn out to
be numbers that are approximately equal (typical values will be from 0.5
to 1.5). The first individual will be the number B / (R + Y) rounded to
two decimal places. Record these values for each group below.
-
The second individual will be the number (3*R) / (T - R) rounded to two
decimal places. Record these numbers for each group of M&Ms below.
-
The third number will be the number (2.5*O)
/ T rounded to two decimal places. Record these numbers for each
group of M&Ms below.
-
Eat your M&Ms!
-
Add all 6 of your individuals to the population data on the board. Copy
down the class data as a stem plot, with split
stems, and be sure to put the data in order (from smallest to largest)
on your stem plot.
-
Calculate the mean and standard deviation of the population (the collection
of all individuals from the entire class). Record these below.
-
Are the two numbers from (8) statistics or parameters? Also record N =
the number of individuals in the population.
We will now draw several samples from our population and calculate
for each sample. To do this, we should label the individuals in our population
with numbers from 1 to N, and then use our calculator's randInt
command (do NOT seed your calculator however). We would use randInt(1,N,4)
to select 4 numbers and randInt(1,N,10) if we wanted 10
individuals in our sample. Of course, we should remove duplicates in our
samples with repeated calls to the command randInt(1,N).
Once we have a sample of the correct size, we take those individuals from
the population and calculate their average. For example, if your randInt
command returns the values 3, 12, 9, 2, then you will use the 3rd smallest
individual, the 12th smallest individual, and so on, for your calculation.
It is probably easiest to calculate the
values by hand (something like (.86 + .43 + .98 + .34) / 4 ), rather than
using 1VarStats.
-
Select 5 SRS's of size 4 from the population and calculate their averages.
Record the information below and record your
values on the board (rounded to two decimal places).