A simple random sample (SRS) of size n is a sample chosen in such a way that all groups of n individuals from our population have an equal chance of being selected. SRS's tend to match the characteristics of the population. This limits the impact of under-representation, bias, lurking variables and other problems that may occur from alternate sampling techniques. If a population consists of several different types of individuals, say 42% with brown hair, 33% with blonde hair, 20% with black hair and 5% with red hair, then a random sample (assuming it is large enough) from this population should come close to matching these percentages. The reason is that every individual is equally likely to be included, so about 42% of the chosen individuals will have brown hair (because 42% of the population does and everyone is equally likely to be included), about 33% will have blonde hair (since 33% of the population does), and so on.
If we select 10 random individuals from this population, we'd expect
3 or 4 to prefer diet pop, 6 or so to prefer regular pop and 0 or 1 that
do not drink pop. However, different samples will have different numbers
that prefer diet pop, regular pop, or do not drink pop. We'll use our TI-83's
to generate our random samples of size 10. In essence, the TI-83 contains
its own version of Table B, however the one in the calculator has some
fancy features that make SRS selection more convenient. To make sure that
different groups select different samples, we need to seed our calculator's
random number generator. Each member of your group should use the same
seed, and you only need to seed your calculator once today. In general,
you do not need to seed your calculator unless you are told specifically
to do so.

This is one drawback to the randInt command, sometimes we get repeated individuals in our samples, and these MUST BE REMOVED. When this happens, you can enter another version of the randInt command (just omit the third parameter), and keep pressing [ENTER] until you have enough individuals in your sample. For example, the command randInt(1,100) will generate a single random value from 1 to 100. If you then press [ENTER], the calculator will generate another single random number from 1 to 100. You can simply continue to generate single individuals for your sample, until you have a total of n different individuals (that is, until all of your repeated values have been replaced).
original sample: 1 1 3 3
3 6 7 12 15
17
Remember, use randInt(1,100,10) to pick a sample of size 10, and then use randInt(1,100) to replace any duplicates. The second version of the command will give an endless supply of possible substitutes to get rid of duplications in your original sample!
Execute the randInt command from part (c) above . It will be much easier to work with sorted lists of labels (or a sorted sample). To sort the list L1 from smallest to largest (ascending order), press
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 1st D | 2nd D | 3rd D | 4th D | 5th D |
| 1st N | 2nd N | 3rd N | 4th N | 5th N |
| D = | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| Class Totals |
| N = | 0 | 1 | 2 | 3 |
|
|
| Agarwal | Dewald | Huang | Puri |
| Anderson | Fenandez | Kim | Richards |
| Baxter | Fleming | Liao | Rodriguez |
| Bowman | Gates | Mourning | Santiago |
| Brown | Goel | Naber | Shen |
| Castillo | Gomez | Peters | Vega |
| Cross | Henandez | Pliego | Wang |
When you use randInt to help answer a question (especially on exams or quizzes), be sure to clearly explain the setup of the problem (which labels go with which individuals etc.), and give both the input values to the randInt command as well as the values that randInt produces as output. It is probably best on exams and quizzes to seed your calculator and record the seed value with your solution.