Simple Random Sampling

Slides:



Advertisements
Similar presentations
Sta220 - Statistics Mr. Smith Room 310 Class #10.
Advertisements

Unit 1 Section 1.3 – Day : Sampling Techniques  Sample – a part of a population used in statistical studies.  An unbiased sample is one where.
POPULATION- the entire group of individuals that we want information about SAMPLE- the part of the population that we actually examine in order to gather.
Simple Random Sampling
Section 5.1 What is Probability? 5.1 / 1. Probability Probability is a numerical measurement of likelihood of an event. The probability of any event is.
Chapter 2: Sampling and Surveys Section 2.1: Samples, Good and Bad.
1-3 Data Collection and Sampling Techniques Surveys are the most common method of collecting data. Three methods of surveying are: 1) Telephone surveys.
Counting Subsets of a Set: Combinations Lecture 31 Section 6.4 Wed, Mar 21, 2007.
If you have your Parent Letter signed, please return the bottom portion. Scissors are on my desk. Grab the handout at the front. Complete the front. Wait.
Chapter 5 Section 1 – Part 2. Samples: Good & Bad What makes a sample bad? What type of “bad” sampling did we discuss previously?
Confidence Interval Estimation for a Population Proportion Lecture 31 Section 9.4 Wed, Nov 17, 2004.
A simple random sample of n measurements from a population is one selected in such a manner that 1. every sample of size n from the population has equal.
Investigation 1- IB2 Random sampling and Quadrats (G.1.3)
Testing Hypotheses about a Population Proportion Lecture 30 Sections 9.3 Wed, Oct 24, 2007.
Continuous Random Variables Lecture 25 Section Mon, Feb 28, 2005.
Section 6-3 Estimating a Population Mean: σ Known.
Section 7-3 Estimating a Population Mean: σ Known.
Simulating Experiments on the TI Section Starter Use the random integer generator in your calculator to choose an SRS of 5 students from.
Continuous Random Variables Lecture 22 Section Mon, Feb 25, 2008.
Section 5.1.  Three ways to answer this question: 1. Actually carry out an experiment 2. Develop a probability model 3. Start with a model, and then.
Systematic Sampling Lecture 9 – Part 1 Sections 2.8 Wed, Jan 30, 2008.
Copyright © 2013, 2010 and 2007 Pearson Education, Inc. Chapter Data Collection 1.
Chapter7.6 M2 Sample Data & Populations EQ: How can we collect data from populations?
Warm Up Complete the Margins of Error Worksheet #1 – 3 on the back!
Introduction Imagine the process for testing a new design for a propulsion system on the International Space Station. The project engineers wouldn’t perform.
Random numbers. Using Random Number Table 1.Randomly select in the table a 1-digit number. Describe the position of that number (e.g. 5 th row, 13 th.
Copyright © 2016 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. B ASIC C ONCEPTS IN P ROBABILITY Section 5.1.
Confidence Interval Estimation for a Population Proportion Lecture 33 Section 9.4 Mon, Nov 7, 2005.
HAWKES LEARNING SYSTEMS Students Matter. Success Counts. Copyright © 2013 by Hawkes Learning Systems/Quant Systems, Inc. All rights reserved. Chapter 1.
Descriptive Statistics Experiment Simulations Confidence Intervals Sampling Distribution Simulations Main Menu.
Statistics – Chapter 1 Data Collection
Unit 1 Section 1.3.
Section 4.2 Random Sampling.
Unit 1 Day 6: Simulations.
Continuous Random Variables
Testing Hypotheses about a Population Proportion
Chapter 1 Data Collection.
Day 6: Simulations Unit 1: Statistics.
Determining the theoretical probability of an event
Probability and Statistics
Confidence Interval Estimation for a Population Proportion
Random Sampling and Combinations
Calculations with Lists
Warm Up 4.
Independent Samples: Comparing Proportions
Confidence Intervals for a Population Mean, Standard Deviation Known
Simulating experiments
Lecture 36 Section 14.1 – 14.3 Mon, Nov 27, 2006
Sampling Distribution of a Sample Mean
Sampling Distribution of a Sample Proportion
Continuous Random Variables
Testing Hypotheses about a Population Proportion
Continuous Random Variables
Day 6: Simulations Unit 1: Statistics.
Simple Random Sampling
Probability using Simulations
Random Sampling using RAN#
Testing Hypotheses about a Population Proportion
Sampling.
Chapter One Data Collection
Testing Hypotheses about a Population Proportion
Continuous Random Variables
Lecture 15 Sections 5.1 – 5.2 Tue, Feb 14, 2006
Surveys How to create one.
Testing Hypotheses about a Population Proportion
Probability and Statistics
Confidence Interval Estimation for a Population Proportion
Random Sampling using RAN#
Lecture 43 Section 14.1 – 14.3 Mon, Nov 28, 2005
Simple Random Sampling
Presentation transcript:

Simple Random Sampling Lecture 7 Section 2.5 Mon, Jan 28, 2008

Simple Random Sample Simple Random Sample of size n.

Simple Random Sample A consequence of this is that all individuals in the population have the same chance of being selected for the sample.

Simple Random Sample However, just because a sampling method guarantees that all individuals in the population have the same chance of being in the sample, it does not mean that the sample is a simple random sample.

Selecting a Simple Random Sample Given a population of size N, Number the members from 1 to N. Use a random number generator (such as on a calculator) to generate n random integers from 1 to N.

Selecting a Simple Random Sample The sampling may be done with or without replacement. If the sampling is done without replacement, then repetitions should be discarded.

TI-83 – Selecting a Sample Suppose that the population size is N = 100. Press MATH. Use arrow keys to highlight PRB menu. Press 5 to select randInt (item #5). Enter randInt(1, 100) and press ENTER. A random number appears. Press ENTER repeatedly for more random numbers.

Example Let the population be the students in this class, numbered 1 – 7 in alphabetical order. So N = 7. Choose a random sample of size n = 3. What is each person’s chance of being selected for the sample?

Getting a Set of Random Numbers To get several random integers at once, possibly with repetitions, use randInt with a third parameter. For example, to get 3 random integers from 1 to 7, enter randInt(1, 7, 3)

TI-83 – Setting the Seed Enter the desired seed, say, 48. Press STO. Press MATH, highlight PRB, select rand (item #1). Press ENTER. The seed is set to 48.

Example Set the seed to 48. Then select a random sample of size 3 from the population of the previous example.

www.random.org The web site www.random.org will provide truly random numbers! The numbers are integers ranging over any specified interval. They can be generated with repetitions or without repetitions. You can also do random coin flips.