AP Statistics Ch 7 Random Variables

Size: px
Start display at page:

Download "AP Statistics Ch 7 Random Variables"

Transcription

1 Ch 7.1 Discrete and Continuous Random Variables Introduction A random variable is a variable whose value is a numerical outcome of a random phenomenon. If an experiment or sample survey is repeated, different results will be obtained. The probability theory for random variables tells us that there is a certain type of regularity or predictability in these results. A random variable can be either discrete or continuous. Discrete Random Variables A discrete random variable X has a countable number of possible values. The probability distribution of X lists the values and their probabilities. Values of X x 1 x 2 x 3 x k Probability p 1 p 2 p 3 p k The probability distribution assigns each value of X a probability between 0 and 1 such that the sum of all the probabilities is exactly 1. The probability of any event is the sum of the probabilities of all the values that make up the event. Use a probability histogram to picture a probability distribution. page 1

2 Example Car Ownership o Choose an American household at random and let the random variable X be the number of cars they own. Here is the probability model if we ignore the few households that own more than 5 cars. Number of Cars X Probability o Verify that this is a legitimate discrete distribution. Display the distribution in a probability histogram. o Say in words what the event {X 1} is. Find P(X 1). o Say in words what the event {X > 1} is. Find P(X > 1). o A housing company builds houses with two-car garages. What percent of households have more cars than the garage can hold? page 2

3 Continuous Random Variables A continuous random variable X takes all values in an interval of numbers. The probability distribution of X is described by a density curve. The probability of any event is the area under the density curve and above the values of X that make up the event. Any density curve has area exactly 1 underneath it, corresponding to total probability 1. The probability model for a continuous random variable assigns probabilities to intervals of outcomes rather than to individual outcomes. In fact, all continuous probability distributions assign probability 0 to every individual outcome. Example The Sum of Two Random Decimals o Generate two random numbers between 0 and 1 and take Y to be their sum. Then Y is a continuous random variable that can take any value between 0 and 2. The density curve of Y is the triangle shown in the figure. o Verify that the area under this curve is 1. o What is the probability that Y is less than 1? o What is the probability that Y is less than 0.5? page 3

4 o Use the following commands to simulate the last two answers. rand(200) L 1 rand(200) L 2 L 1 +L 2 L 3 SortA(L 3 ) Generates 200 random numbers and stores them in List 1 Generates 200 random numbers and stores them in List 2 Adds the first number in L 1 and the first number in L 2 and stores the sum in L 3, and so forth Sorts the sums in L 3 in ascending order o Count the number of sums in L 3 that are less than 1 and determine the relative frequency. sum(l 3 < 1) o Count the number of sums in L 3 that are less than 0.5 and determine the relative frequency. sum(l 3 <.5) o Picture the distribution as follows: Define Plot1 to be a histogram using L 3. Set the window dimensions as follows: X[0, 2] 0.1 and Y[-6, 25] 5. Does the resulting histogram resemble the triangle? Of course, some bars will be too short and others will be too long, but this is due to chance variation. Overlay the triangle: Y1 = 25X, Y2 = -25X How well does this curve fit your histogram? page 4

5 Normal Distributions as Probability Distributions Normal distributions are one type of continuous probability distribution. Recall that N(μ,σ) is the shorthand notation for the normal distribution having mean μ and standard deviation σ. In the language of random variables, if X has the N(μ,σ) distribution, then the standardized variable Z is the standard normal random variable having the distribution N(0,1). Z = X μ σ Example Joggers o An opinion poll asks an SRS of 1500 adults, Do you happen to jog? Suppose that the population proportion who jog is p = To estimate p, we use the proportion p ˆ in the sample who answer Yes. The statistic p ˆ is a random variable that is approximately normally distributed with mean μ = 0.15 and standard deviation σ = What is the probability that the poll results differ from the truth about the population by more than one percentage point? o Find P( ˆ p 0.14) o Find P( ˆ p 0.16) o Find P(0.14 ˆ p 0.16) o Find P( ˆ p 0.14 or ˆ p 0.16) page 5

6 o Carry out a simulation to approximate the answers to the above questions. Don t forget to change the counts to relative frequencies by dividing by 500. randnorm (.15,.0092, 500) L 1 SortA(L 1 ) sum(l 1.14) sum(l1.16) o Find P( ˆ p 0.14) o Find P( ˆ p 0.16) o Find P(0.14 ˆ p 0.16) o Find P( ˆ p 0.14 or ˆ p 0.16) o How does your simulation compare to the calculations? page 6

7 Ch 7.2 Means and Variances of Random Variables The Mean and Variance of a Random Variable The probability distribution of a random variable X has a mean μ x and a standard deviation σ x. The mean of a random variable X is also called the expected value of X. If X is discrete, the mean is the average of the values of X, each weighted by its probability. μ x = x 1 p 1 + x 2 p x k p k =Σx i p i The variance σ 2 x is the average squared deviation of the values of the variable from their mean. For a discrete random variable: σ 2 x = (x 1 μ) 2 p 1 + (x 2 μ) 2 p (x k μ) 2 p k =Σ(x i μ) 2 p i The standard deviation σ x is the square root of the variance. The standard deviation measures the variability of the distribution about the mean. The mean and variance of a continuous random variable can be computed from the density curve, but to do so requires more advanced mathematics. For a symmetric density curve, the mean lies at the center. Example Grade Distribution o The following is a grade distribution in a large class. Grade Probability o Find the expected value of the distribution of grades. o Find the standard deviation of the distribution of grades. page 1

8 Law of Large Numbers The law of large numbers says that the actual mean outcome of many trials x gets close to the distribution mean μ as more trials are made. Example Law of Large Numbers Simulation o The distribution of heights of all young women is close to the normal distribution with mean 64.5 inches and standard deviation 2.5 inches. Simulate picking a young woman at random from the population and plotting the values of the mean height x as you add women to the sample. o Simulation: seq(x,x,1,200) L 1 Enters the positive integers 1 to 200 randnorm(64.5,2.5,200) L 2 Generates 200 random heights cumsum(l 2 ) L 3 Provides a cumulative sum L 3 /L 1 L 4 Calculates the average heights o Plot an xyline with L1 vs L4 and Y1 = 64.5 o Set window to X[1,100] 10 and Y[60,69] 1 o What happened to the average heights in the short run? o What happened to the average heights in the long run? page 2

9 Rules for Means and Variances If X is a random variable and a and b are fixed numbers, then μ a +bx = a + bμ X If X and Y are random variables, then μ X +Y = μ X + μ Y If X is a random variable and a and b are fixed numbers, then 2 σ a +bx = b 2 2 σ X If X and Y are independent random variables, then 2 σ X +Y = σ 2 2 X + σ Y 2 σ X Y = σ 2 2 X + σ Y For sums or differences of independent random variables, variances add. Notice that the formula looks very similar to the Pythagorean theorem. Just as the Pythagorean theorem applies only to right triangles, this relationship applies only to independent random variables. Why add even for the difference of the variables? o We buy some cereal. The box says "16 ounces." We know that's not precisely the weight of the cereal in the box, just close. Weights of such boxes of cereal vary somewhat, and our uncertainty about the exact weight is expressed by the variance (or standard deviation) of those weights. o Next we get out a bowl that holds 3 ounces of cereal and pour it full. Our pouring skill certainly is not very precise, so the bowl now contains about 3 ounces with some variability (uncertainty). o How much cereal is left in the box? Well, we'd assume about 13 ounces. But notice that we're less certain about this remaining weight than we were about the weight before we poured out the bowlful. The variability of the weight in the box has increased even though we subtracted cereal. o Moral: Every time something happens at random, whether it adds to the pile or subtracts from it, uncertainty (read "variance") increases. Example Heights o Men s heights (X) are normally distributed with a mean of 68 inches and a standard deviation of 3 inches. Women s heights (Y) are normally distributed with a mean of 63 inches and a standard deviation of 2 inches. o Let Z be the sum of men s and women s heights, Z = X+Y. Find the mean and standard deviation of Z. o Let D be the difference of men s and women s heights, D = X-Y. Find the mean and standard deviation of D. page 3

10 Example Ferry Prices o Consider a large ferry that can accommodate cars and buses. The toll for cars is $3, and the toll for buses is $10. Let X = # of cars and Y = # of buses carried on a single trip. Cars and buses are accommodated on a different levels of the ferry, so the number of buses accommodated on any trip is independent of the number of cars on the trip. o Probability distributions for X = # of cars and Y = # of buses X P(X) Y P(Y) o Compute the mean and standard deviation of X. o Compute the mean and standard deviation of Y. o Compute the mean and variance of the total amount of money collected in tolls from cars. o Compute the mean and variance of the total amount of money collected in tolls from buses. o Compute the mean and variance of Z = total number of vehicles. o Compute the mean and variance of W = total amount of money collected. page 4

11 Combining Normal Random Variables Any linear combination of independent normal random variables is also normally distributed. Example Capping Machine o A machine fastens plastic screw-on caps onto containers of motor oil. If the machine applies more torque than the cap can withstand, the cap will break. Both the torque applied and the strength of the caps vary. The cappingmachine torque has the normal distribution with mean 7 inch-pounds and standard deviation 0.9 inch-pounds. The cap strength has the normal distribution with mean 10 inch-pounds and standard deviation 1.2 inchpounds. o Explain why it is reasonable to assume that the cap strength and the torque applied by the machine are independent. o What is the probability that a cap will break while being fastened by the capping machine? page 5

# of units, X P(X) Show that the probability distribution for X is legitimate.

# of units, X P(X) Show that the probability distribution for X is legitimate. Probability Distributions A. El Dorado Community College considers a student to be full-time if he or she is taking between 12 and 18 units. The number of units X that a randomly selected El Dorado Community

More information

Chapter 7: Random Variables

Chapter 7: Random Variables Chapter 7: Random Variables Section 7.2 The Practice of Statistics, 4 th edition For AP* STARNES, YATES, MOORE Section 7.2 2 Learning Objectives After this section, you should be able to DESCRIBE the effect

More information

= = =

= = = . D - To evaluate the expression, we can regroup the numbers and the powers of ten, multiply, and adjust the decimal and exponent to put the answer in correct scientific notation format: 5 0 0 7 = 5 0

More information

Probability. Hosung Sohn

Probability. Hosung Sohn Probability Hosung Sohn Department of Public Administration and International Affairs Maxwell School of Citizenship and Public Affairs Syracuse University Lecture Slide 4-3 (October 8, 2015) 1/ 43 Table

More information

(i) The mean and mode both equal the median; that is, the average value and the most likely value are both in the middle of the distribution.

(i) The mean and mode both equal the median; that is, the average value and the most likely value are both in the middle of the distribution. MATH 183 Normal Distributions Dr. Neal, WKU Measurements that are normally distributed can be described in terms of their mean µ and standard deviation!. These measurements should have the following properties:

More information

AP Statistics Review Ch. 7

AP Statistics Review Ch. 7 AP Statistics Review Ch. 7 Name 1. Which of the following best describes what is meant by the term sampling variability? A. There are many different methods for selecting a sample. B. Two different samples

More information

Chapter 3 Probability Distributions and Statistics Section 3.1 Random Variables and Histograms

Chapter 3 Probability Distributions and Statistics Section 3.1 Random Variables and Histograms Math 166 (c)2013 Epstein Chapter 3 Page 1 Chapter 3 Probability Distributions and Statistics Section 3.1 Random Variables and Histograms The value of the result of the probability experiment is called

More information

Chapter 6. The Standard Deviation as a Ruler and the Normal Model 1 /67

Chapter 6. The Standard Deviation as a Ruler and the Normal Model 1 /67 Chapter 6 The Standard Deviation as a Ruler and the Normal Model 1 /67 Homework Read Chpt 6 Complete Reading Notes Do P129 1, 3, 5, 7, 15, 17, 23, 27, 29, 31, 37, 39, 43 2 /67 Objective Students calculate

More information

Ch 1. The Language of Algebra

Ch 1. The Language of Algebra Ch 1 The Language of Algebra 1-1 Writing Expressions and Equations Writing Expressions Buying CDs: 1 CD = $15 2 CD = $15 x 2 3 CD = $15 x 3 n number of CDs? $15 x n Algebraic Expression Writing Expressions

More information

Chapter 3: The Normal Distributions

Chapter 3: The Normal Distributions Chapter 3: The Normal Distributions http://www.yorku.ca/nuri/econ2500/econ2500-online-course-materials.pdf graphs-normal.doc / histogram-density.txt / normal dist table / ch3-image Ch3 exercises: 3.2,

More information

Sem. 1 Review Ch. 1-3

Sem. 1 Review Ch. 1-3 AP Stats Sem. 1 Review Ch. 1-3 Name 1. You measure the age, marital status and earned income of an SRS of 1463 women. The number and type of variables you have measured is a. 1463; all quantitative. b.

More information

Topic I can Complete ( ) Mark Red/Amber/Green Parent s signature. Inverclyde Academy Mathematics Department Page 1

Topic I can Complete ( ) Mark Red/Amber/Green Parent s signature. Inverclyde Academy Mathematics Department Page 1 Fractions, Decimal Fractions and Percentages (MNU 2-07a, MNU 3-07a) I can write fractions by examining shapes cut into even parts. I know percentage is another way of describing a fraction. I can solve

More information

Example: Can an increase in non-exercise activity (e.g. fidgeting) help people gain less weight?

Example: Can an increase in non-exercise activity (e.g. fidgeting) help people gain less weight? Example: Can an increase in non-exercise activity (e.g. fidgeting) help people gain less weight? 16 subjects overfed for 8 weeks Explanatory: change in energy use from non-exercise activity (calories)

More information

Confidence intervals CE 311S

Confidence intervals CE 311S CE 311S PREVIEW OF STATISTICS The first part of the class was about probability. P(H) = 0.5 P(T) = 0.5 HTTHHTTTTHHTHTHH If we know how a random process works, what will we see in the field? Preview of

More information

Discrete Distributions

Discrete Distributions Discrete Distributions STA 281 Fall 2011 1 Introduction Previously we defined a random variable to be an experiment with numerical outcomes. Often different random variables are related in that they have

More information

STA 218: Statistics for Management

STA 218: Statistics for Management Al Nosedal. University of Toronto. Fall 2017 My momma always said: Life was like a box of chocolates. You never know what you re gonna get. Forrest Gump. Simple Example Random Experiment: Rolling a fair

More information

What is statistics? Statistics is the science of: Collecting information. Organizing and summarizing the information collected

What is statistics? Statistics is the science of: Collecting information. Organizing and summarizing the information collected What is statistics? Statistics is the science of: Collecting information Organizing and summarizing the information collected Analyzing the information collected in order to draw conclusions Two types

More information

20 Hypothesis Testing, Part I

20 Hypothesis Testing, Part I 20 Hypothesis Testing, Part I Bob has told Alice that the average hourly rate for a lawyer in Virginia is $200 with a standard deviation of $50, but Alice wants to test this claim. If Bob is right, she

More information

Willmar Public Schools Curriculum Map

Willmar Public Schools Curriculum Map Note: Problem Solving Algebra Prep is an elective credit. It is not a math credit at the high school as its intent is to help students prepare for Algebra by providing students with the opportunity to

More information

Write an equation for each relationship. Then make a table of input-output pairs and tell whether the function is proportional.

Write an equation for each relationship. Then make a table of input-output pairs and tell whether the function is proportional. Functions Reteaching 41 Math Course, Lesson 41 A function is a rule that identifies a relationship between a set of input numbers and a set of output numbers. A function rule can be described in words,

More information

Math 223 Lecture Notes 3/15/04 From The Basic Practice of Statistics, bymoore

Math 223 Lecture Notes 3/15/04 From The Basic Practice of Statistics, bymoore Math 223 Lecture Notes 3/15/04 From The Basic Practice of Statistics, bymoore Chapter 3 continued Describing distributions with numbers Measuring spread of data: Quartiles Definition 1: The interquartile

More information

Chapter 15 Sampling Distribution Models

Chapter 15 Sampling Distribution Models Chapter 15 Sampling Distribution Models 1 15.1 Sampling Distribution of a Proportion 2 Sampling About Evolution According to a Gallup poll, 43% believe in evolution. Assume this is true of all Americans.

More information

MATH 1150 Chapter 2 Notation and Terminology

MATH 1150 Chapter 2 Notation and Terminology MATH 1150 Chapter 2 Notation and Terminology Categorical Data The following is a dataset for 30 randomly selected adults in the U.S., showing the values of two categorical variables: whether or not the

More information

7.1: What is a Sampling Distribution?!?!

7.1: What is a Sampling Distribution?!?! 7.1: What is a Sampling Distribution?!?! Section 7.1 What Is a Sampling Distribution? After this section, you should be able to DISTINGUISH between a parameter and a statistic DEFINE sampling distribution

More information

Chapter 7 Sampling Distributions

Chapter 7 Sampling Distributions Statistical inference looks at how often would this method give a correct answer if it was used many many times. Statistical inference works best when we produce data by random sampling or randomized comparative

More information

Ch 1 The Language of Algebra. 1.1 Writing Expressions and Equations. Variable: Algebraic Expression: Numerical Expression: Multiplication: Division:

Ch 1 The Language of Algebra. 1.1 Writing Expressions and Equations. Variable: Algebraic Expression: Numerical Expression: Multiplication: Division: Ch 1 The Language of Algebra 1.1 Writing Expressions and Equations Variable: Algebraic Expression: Numerical Expression: Multiplication: Division: Words for Addition: Subtraction: Multiplication: Division:

More information

Name Date Period. 1. Which of the following shows 160 as a product of its prime factors? a c b

Name Date Period. 1. Which of the following shows 160 as a product of its prime factors? a c b Name Date Period Practice 2 nd Quarter Cumulative Exam This practice exam mirrors your real exam except that the cumulative is completely multiple choice. Some questions do not require work but most do.

More information

California 3 rd Grade Standards / Excel Math Correlation by Lesson Number

California 3 rd Grade Standards / Excel Math Correlation by Lesson Number California 3 rd Grade Standards / Lesson (Activity) L1 L2 L3 L4 L5 L6 L7 L8 Excel Math Lesson Objective Learning about the tens place and the ones place; adding and subtracting two-digit numbers; learning

More information

1. AN INTRODUCTION TO DESCRIPTIVE STATISTICS. No great deed, private or public, has ever been undertaken in a bliss of certainty.

1. AN INTRODUCTION TO DESCRIPTIVE STATISTICS. No great deed, private or public, has ever been undertaken in a bliss of certainty. CIVL 3103 Approximation and Uncertainty J.W. Hurley, R.W. Meier 1. AN INTRODUCTION TO DESCRIPTIVE STATISTICS No great deed, private or public, has ever been undertaken in a bliss of certainty. - Leon Wieseltier

More information

Elementary Statistics

Elementary Statistics Elementary Statistics Q: What is data? Q: What does the data look like? Q: What conclusions can we draw from the data? Q: Where is the middle of the data? Q: Why is the spread of the data important? Q:

More information

Archdiocese of Washington Catholic Schools Academic Standards Mathematics

Archdiocese of Washington Catholic Schools Academic Standards Mathematics 8 th GRADE Archdiocese of Washington Catholic Schools Standard 1 - Number Sense Students know the properties of rational* and irrational* numbers expressed in a variety of forms. They understand and use

More information

Let us think of the situation as having a 50 sided fair die; any one number is equally likely to appear.

Let us think of the situation as having a 50 sided fair die; any one number is equally likely to appear. Probability_Homework Answers. Let the sample space consist of the integers through. {, 2, 3,, }. Consider the following events from that Sample Space. Event A: {a number is a multiple of 5 5, 0, 5,, }

More information

Archdiocese of Washington Catholic Schools Academic Standards Mathematics

Archdiocese of Washington Catholic Schools Academic Standards Mathematics 6 th GRADE Archdiocese of Washington Catholic Schools Standard 1 - Number Sense Students compare and order positive and negative integers*, decimals, fractions, and mixed numbers. They find multiples*

More information

Exam #2 Results (as percentages)

Exam #2 Results (as percentages) Oct. 30 Assignment: Read Chapter 19 Try exercises 1, 2, and 4 on p. 424 Exam #2 Results (as percentages) Mean: 71.4 Median: 73.3 Soda attitudes 2015 In a Gallup poll conducted Jul. 8 12, 2015, 1009 adult

More information

1. Descriptive stats methods for organizing and summarizing information

1. Descriptive stats methods for organizing and summarizing information Two basic types of statistics: 1. Descriptive stats methods for organizing and summarizing information Stats in sports are a great example Usually we use graphs, charts, and tables showing averages and

More information

Addition and Subtraction of real numbers (1.3 & 1.4)

Addition and Subtraction of real numbers (1.3 & 1.4) Math 051 lecture notes Professor Jason Samuels Addition and Subtraction of real numbers (1.3 & 1.4) ex) 3 + 5 = ex) 42 + 29 = ex) 12-4 = ex) 7-9 = ex) -3-4 = ex) 6 - (-2) = ex) -5 - (-3) = ex) 7 + (-2)

More information

L06. Chapter 6: Continuous Probability Distributions

L06. Chapter 6: Continuous Probability Distributions L06 Chapter 6: Continuous Probability Distributions Probability Chapter 6 Continuous Probability Distributions Recall Discrete Probability Distributions Could only take on particular values Continuous

More information

(i) The mean and mode both equal the median; that is, the average value and the most likely value are both in the middle of the distribution.

(i) The mean and mode both equal the median; that is, the average value and the most likely value are both in the middle of the distribution. MATH 382 Normal Distributions Dr. Neal, WKU Measurements that are normally distributed can be described in terms of their mean µ and standard deviation σ. These measurements should have the following properties:

More information

MATHEMATICS Grade 5 Standard: Number, Number Sense and Operations. Organizing Topic Benchmark Indicator

MATHEMATICS Grade 5 Standard: Number, Number Sense and Operations. Organizing Topic Benchmark Indicator Standard: Number, Number Sense and Operations Number and A. Represent and compare numbers less than 0 through 6. Construct and compare numbers greater than and less Number Systems familiar applications

More information

Chapter 5: Normal Probability Distributions

Chapter 5: Normal Probability Distributions Probability and Statistics Mrs. Leahy Chapter 5: Normal Probability Distributions 5.1 Introduction to Normal Distributions and the Standard Normal Distribution What is a Normal Distribution and a Normal

More information

8.1 Frequency Distribution, Frequency Polygon, Histogram page 326

8.1 Frequency Distribution, Frequency Polygon, Histogram page 326 page 35 8 Statistics are around us both seen and in ways that affect our lives without us knowing it. We have seen data organized into charts in magazines, books and newspapers. That s descriptive statistics!

More information

Writing Equations 2.1. Addition Subtraction Multiplication Division

Writing Equations 2.1. Addition Subtraction Multiplication Division Writing Equations 2.1 Addition Subtraction Multiplication Division Example 1 A number b divided by three is six less than c. Example 2 Fifteen more than z times 6 is 11 less than y times 2. Example 3 Twenty

More information

The Standard Deviation as a Ruler and the Normal Model

The Standard Deviation as a Ruler and the Normal Model The Standard Deviation as a Ruler and the Normal Model Al Nosedal University of Toronto Summer 2017 Al Nosedal University of Toronto The Standard Deviation as a Ruler and the Normal Model Summer 2017 1

More information

= ( 17) = (-4) + (-6) = (-3) + (- 14) + 20

= ( 17) = (-4) + (-6) = (-3) + (- 14) + 20 Integer Operations Adding Integers If the signs are the same, add the numbers and keep the sign. If the signs are different, find the difference and use the sign of the number with the greatest absolute

More information

Intro to Confidence Intervals: A estimate is a single statistic based on sample data to estimate a population parameter Simplest approach But not always very precise due to variation in the sampling distribution

More information

ALGEBRA 1 SEMESTER 1 INSTRUCTIONAL MATERIALS Courses: Algebra 1 S1 (#2201) and Foundations in Algebra 1 S1 (#7769)

ALGEBRA 1 SEMESTER 1 INSTRUCTIONAL MATERIALS Courses: Algebra 1 S1 (#2201) and Foundations in Algebra 1 S1 (#7769) Multiple Choice: Identify the choice that best completes the statement or answers the question. 1. Ramal goes to the grocery store and buys pounds of apples and pounds of bananas. Apples cost dollars per

More information

A.0 SF s-uncertainty-accuracy-precision

A.0 SF s-uncertainty-accuracy-precision A.0 SF s-uncertainty-accuracy-precision Objectives: Determine the #SF s in a measurement Round a calculated answer to the correct #SF s Round a calculated answer to the correct decimal place Calculate

More information

Test 3 SOLUTIONS. x P(x) xp(x)

Test 3 SOLUTIONS. x P(x) xp(x) 16 1. A couple of weeks ago in class, each of you took three quizzes where you randomly guessed the answers to each question. There were eight questions on each quiz, and four possible answers to each

More information

121. y = Each solution is 32 units from = 2. > 3. < 4. > 5. > 6. > 1. x < q no 9. yes 10.

121. y = Each solution is 32 units from = 2. > 3. < 4. > 5. > 6. > 1. x < q no 9. yes 10. . y =,. y =. y = x. x =, Each solution is units from... y x =. x m x =. C = ; months; months x = w u + r. no solution. n =,. no solution Each solution is units from. Each solution is units from. Chapter.

More information

What is a parameter? What is a statistic? How is one related to the other?

What is a parameter? What is a statistic? How is one related to the other? Chapter Seven: SAMPLING DISTRIBUTIONS 7.1 Sampling Distributions Read 424 425 What is a parameter? What is a statistic? How is one related to the other? Example: Identify the population, the parameter,

More information

Beautiful homework # 4 ENGR 323 CESSNA Page 1/5

Beautiful homework # 4 ENGR 323 CESSNA Page 1/5 Beautiful homework # 4 ENGR 33 CESSNA Page 1/5 Problem 3-14 An operator records the time to complete a mechanical assembly to the nearest second with the following results. seconds 30 31 3 33 34 35 36

More information

Sampling, Frequency Distributions, and Graphs (12.1)

Sampling, Frequency Distributions, and Graphs (12.1) 1 Sampling, Frequency Distributions, and Graphs (1.1) Design: Plan how to obtain the data. What are typical Statistical Methods? Collect the data, which is then subjected to statistical analysis, which

More information

ACMS Statistics for Life Sciences. Chapter 11: The Normal Distributions

ACMS Statistics for Life Sciences. Chapter 11: The Normal Distributions ACMS 20340 Statistics for Life Sciences Chapter 11: The Normal Distributions Introducing the Normal Distributions The class of Normal distributions is the most widely used variety of continuous probability

More information

CONTENTS OF DAY 2. II. Why Random Sampling is Important 10 A myth, an urban legend, and the real reason NOTES FOR SUMMER STATISTICS INSTITUTE COURSE

CONTENTS OF DAY 2. II. Why Random Sampling is Important 10 A myth, an urban legend, and the real reason NOTES FOR SUMMER STATISTICS INSTITUTE COURSE 1 2 CONTENTS OF DAY 2 I. More Precise Definition of Simple Random Sample 3 Connection with independent random variables 4 Problems with small populations 9 II. Why Random Sampling is Important 10 A myth,

More information

Examples of frequentist probability include games of chance, sample surveys, and randomized experiments. We will focus on frequentist probability sinc

Examples of frequentist probability include games of chance, sample surveys, and randomized experiments. We will focus on frequentist probability sinc FPPA-Chapters 13,14 and parts of 16,17, and 18 STATISTICS 50 Richard A. Berk Spring, 1997 May 30, 1997 1 Thinking about Chance People talk about \chance" and \probability" all the time. There are many

More information

Salt Lake Community College MATH 1040 Final Exam Fall Semester 2011 Form E

Salt Lake Community College MATH 1040 Final Exam Fall Semester 2011 Form E Salt Lake Community College MATH 1040 Final Exam Fall Semester 011 Form E Name Instructor Time Limit: 10 minutes Any hand-held calculator may be used. Computers, cell phones, or other communication devices

More information

Next Generation Sunshine State Standards Grade K

Next Generation Sunshine State Standards Grade K Next Generation Sunshine State Standards Grade K Benchmark Level B Level C Big Idea 1: Represent, compare, and order whole numbers, and join and separate sets. MA.K.A.1.1 Represent quantities with numbers

More information

Lecture 7: Confidence interval and Normal approximation

Lecture 7: Confidence interval and Normal approximation Lecture 7: Confidence interval and Normal approximation 26th of November 2015 Confidence interval 26th of November 2015 1 / 23 Random sample and uncertainty Example: we aim at estimating the average height

More information

Lecture 10: Probability distributions TUESDAY, FEBRUARY 19, 2019

Lecture 10: Probability distributions TUESDAY, FEBRUARY 19, 2019 Lecture 10: Probability distributions DANIEL WELLER TUESDAY, FEBRUARY 19, 2019 Agenda What is probability? (again) Describing probabilities (distributions) Understanding probabilities (expectation) Partial

More information

Probability Distributions

Probability Distributions Probability Distributions Probability This is not a math class, or an applied math class, or a statistics class; but it is a computer science course! Still, probability, which is a math-y concept underlies

More information

What Is a Sampling Distribution? DISTINGUISH between a parameter and a statistic

What Is a Sampling Distribution? DISTINGUISH between a parameter and a statistic Section 8.1A What Is a Sampling Distribution? Learning Objectives After this section, you should be able to DISTINGUISH between a parameter and a statistic DEFINE sampling distribution DISTINGUISH between

More information

Student Outcomes. Lesson Notes. Classwork. Opening Exercise (5 minutes)

Student Outcomes. Lesson Notes. Classwork. Opening Exercise (5 minutes) Student Outcomes Students know that truncated cones and pyramids are solids obtained by removing the top portion above a plane parallel to the base. Students find the volume of truncated cones. Lesson

More information

Chapter 7 Discussion Problem Solutions D1 D2. D3.

Chapter 7 Discussion Problem Solutions D1 D2. D3. Chapter 7 Discussion Problem Solutions D1. The agent can increase his sample size to a value greater than 10. The larger the sample size, the smaller the spread of the distribution of means and the more

More information

Statistics Lecture 3

Statistics Lecture 3 Statistics 111 - Lecture 3 Continuous Random Variables The probable is what usually happens. (Aristotle ) Moore, McCabe and Craig: Section 4.3,4.5 Continuous Random Variables Continuous random variables

More information

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 Data Analysis and Statistical Methods Statistics 651 http://www.stat.tamu.edu/~suhasini/teaching.html Suhasini Subba Rao Review Our objective: to make confident statements about a parameter (aspect) in

More information

1. The following two-way frequency table shows information from a survey that asked the gender and the language class taken of a group of students.

1. The following two-way frequency table shows information from a survey that asked the gender and the language class taken of a group of students. Name Algebra Unit 13 Practice Test 1. The following two-way frequency table shows information from a survey that asked the gender and the language class taken of a group of students. Spanish French other

More information

Algebra 1 S1 (#2201) Foundations in Algebra 1 S1 (#7769)

Algebra 1 S1 (#2201) Foundations in Algebra 1 S1 (#7769) Instructional Materials for WCSD Math Common Finals The Instructional Materials are for student and teacher use and are aligned to the Course Guides for the following courses: Algebra 1 S1 (#2201) Foundations

More information

Discrete Probability Distributions

Discrete Probability Distributions Discrete Probability Distributions Chapter 06 McGraw-Hill/Irwin Copyright 2013 by The McGraw-Hill Companies, Inc. All rights reserved. LEARNING OBJECTIVES LO 6-1 Identify the characteristics of a probability

More information

This is Sampling Distributions, chapter 6 from the book Beginning Statistics (index.html) (v. 1.0).

This is Sampling Distributions, chapter 6 from the book Beginning Statistics (index.html) (v. 1.0). This is Sampling Distributions, chapter 6 from the book Beginning Statistics (index.html) (v. 1.0). This book is licensed under a Creative Commons by-nc-sa 3.0 (http://creativecommons.org/licenses/by-nc-sa/

More information

Essential Question: How are the mean and the standard deviation determined from a discrete probability distribution?

Essential Question: How are the mean and the standard deviation determined from a discrete probability distribution? Probability and Statistics The Binomial Probability Distribution and Related Topics Chapter 5 Section 1 Introduction to Random Variables and Probability Distributions Essential Question: How are the mean

More information

Give your answer to part (a) to an appropriate degree of accuracy. 2. This is a list of ingredients for making a pear & almond crumble for 4 people.

Give your answer to part (a) to an appropriate degree of accuracy. 2. This is a list of ingredients for making a pear & almond crumble for 4 people. 1. Work out 2.56 3.50 8.765 6.78 (a) Write down all the figures on your calculator display.... (b) Give your answer to part (a) to an appropriate degree of accuracy.... (1) (Total 3 marks) 2. This is a

More information

1 of 7 8/11/2014 10:27 AM Units: Teacher: PacedAlgebraPartA, CORE Course: PacedAlgebraPartA Year: 2012-13 The Language of Algebra What is the difference between an algebraic expression and an algebraic

More information

You may use your calculator and a single page of notes. The room is crowded. Please be careful to look only at your own exam.

You may use your calculator and a single page of notes. The room is crowded. Please be careful to look only at your own exam. LAST NAME (Please Print): KEY FIRST NAME (Please Print): HONOR PLEDGE (Please Sign): Statistics 111 Midterm 1 This is a closed book exam. You may use your calculator and a single page of notes. The room

More information

Men. Women. Men. Men. Women. Women

Men. Women. Men. Men. Women. Women Math 203 Topics for second exam Statistics: the science of data Chapter 5: Producing data Statistics is all about drawing conclusions about the opinions/behavior/structure of large populations based on

More information

Name Class Date. Pearson Education, Inc., publishing as Pearson Prentice Hall. All rights reserved.

Name Class Date. Pearson Education, Inc., publishing as Pearson Prentice Hall. All rights reserved. Practice - Solving Two-Step Equations Solve each equation. Check your answer.. a +. +. b +. 9 + t. a +. -t + Write an equation to model each situation. Then solve.. You want to buy a bouquet of yellow

More information

('')''* = 1- $302. It is common to include parentheses around negative numbers when they appear after an operation symbol.

('')''* = 1- $302. It is common to include parentheses around negative numbers when they appear after an operation symbol. 2.2 ADDING INTEGERS Adding Integers with the Same Sign We often associate the + and - symbols with positive and negative situations. We can find the sum of integers by considering the outcome of these

More information

Dept. of Linguistics, Indiana University Fall 2015

Dept. of Linguistics, Indiana University Fall 2015 L645 Dept. of Linguistics, Indiana University Fall 2015 1 / 34 To start out the course, we need to know something about statistics and This is only an introduction; for a fuller understanding, you would

More information

EXPERIMENT 2 Reaction Time Objectives Theory

EXPERIMENT 2 Reaction Time Objectives Theory EXPERIMENT Reaction Time Objectives to make a series of measurements of your reaction time to make a histogram, or distribution curve, of your measured reaction times to calculate the "average" or mean

More information

Stat 400 section 4.1 Continuous Random Variables

Stat 400 section 4.1 Continuous Random Variables Stat 400 section 4. Continuous Random Variables notes by Tim Pilachowski Suppose we measure the heights of 5 people to the nearest inch and get the following results: height (in.) 64 65 66 67 68 69 70

More information

ACMS Statistics for Life Sciences. Chapter 13: Sampling Distributions

ACMS Statistics for Life Sciences. Chapter 13: Sampling Distributions ACMS 20340 Statistics for Life Sciences Chapter 13: Sampling Distributions Sampling We use information from a sample to infer something about a population. When using random samples and randomized experiments,

More information

7 th Grade Math Scope and Sequence Student Outcomes (Objectives Skills/Verbs)

7 th Grade Math Scope and Sequence Student Outcomes (Objectives Skills/Verbs) own discovery of the Big BIG IDEA: How are different types of numbers used to represent real life situations? Why is it necessary to have different types of numbers for different situations? Pg 762 1-4(no

More information

Introduction to Statistics for Traffic Crash Reconstruction

Introduction to Statistics for Traffic Crash Reconstruction Introduction to Statistics for Traffic Crash Reconstruction Jeremy Daily Jackson Hole Scientific Investigations, Inc. c 2003 www.jhscientific.com Why Use and Learn Statistics? 1. We already do when ranging

More information

CONTENTS Page Rounding 3 Addition 4 Subtraction 6 Multiplication 7 Division 10 Order of operations (BODMAS)

CONTENTS Page Rounding 3 Addition 4 Subtraction 6 Multiplication 7 Division 10 Order of operations (BODMAS) CONTENTS Page Rounding 3 Addition 4 Subtraction 6 Multiplication 7 Division 10 Order of operations (BODMAS) 12 Formulae 13 Time 14 Fractions 17 Percentages 19 Ratio and Proportion 23 Information Handling

More information

Discrete Probability. Chemistry & Physics. Medicine

Discrete Probability. Chemistry & Physics. Medicine Discrete Probability The existence of gambling for many centuries is evidence of long-running interest in probability. But a good understanding of probability transcends mere gambling. The mathematics

More information

Materials for assessing adult numeracy

Materials for assessing adult numeracy Materials for assessing adult numeracy Number Task The population of Wales is approximately Write this in numbers in the box. million. What is the value of the 7 in this number? Write your answer in words.

More information

Sampling Distribution Models. Central Limit Theorem

Sampling Distribution Models. Central Limit Theorem Sampling Distribution Models Central Limit Theorem Thought Questions 1. 40% of large population disagree with new law. In parts a and b, think about role of sample size. a. If randomly sample 10 people,

More information

σ. We further know that if the sample is from a normal distribution then the sampling STAT 2507 Assignment # 3 (Chapters 7 & 8)

σ. We further know that if the sample is from a normal distribution then the sampling STAT 2507 Assignment # 3 (Chapters 7 & 8) STAT 2507 Assignment # 3 (Chapters 7 & 8) DUE: Sections E, F Section G Section H Monday, March 16, in class Tuesday, March 17, in class Wednesday, March 18, in class Last Name Student # First Name Your

More information

Math Mammoth End-of-the-Year Test, Grade 6, Answer Key

Math Mammoth End-of-the-Year Test, Grade 6, Answer Key Math Mammoth End-of-the-Year Test, Grade 6, Answer Key Please see the test for grading instructions. The Basic Operations 1. a. 2,000 38 = 52 R4. There will be 52 bags of cinnamon. 2. a. 2 5 = 32 b. 5

More information

1. Determine whether the given number is a solution of the equation.

1. Determine whether the given number is a solution of the equation. Section 1.8: EXPONENTS AND ORDER OF OPERATIONS When you are done with your homework you should be able to Evaluate exponential expressions Simplify algebraic expressions with exponents Use the order of

More information

Mathematics 8 Review 1 Square Roots. Practice: When a number is multiplied by itself, you square the number. The product is a perfect square.

Mathematics 8 Review 1 Square Roots. Practice: When a number is multiplied by itself, you square the number. The product is a perfect square. Mathematics 8 Review 1 Square Roots When a number is multiplied by itself, you square the number. The product is a perfect square. For example: The square of 5 is 5 5 25 We write: 5 2 5 5 25 We say: Five

More information

MATHEMATICS. Perform a series of transformations and/or dilations to a figure. A FAMILY GUIDE FOR STUDENT SUCCESS 17

MATHEMATICS. Perform a series of transformations and/or dilations to a figure. A FAMILY GUIDE FOR STUDENT SUCCESS 17 MATHEMATICS In grade 8, your child will focus on three critical areas. The first is formulating and reasoning about expressions and equations, including modeling an association in bivariate data with a

More information

68% 95% 99.7% x x 1 σ. x 1 2σ. x 1 3σ. Find a normal probability

68% 95% 99.7% x x 1 σ. x 1 2σ. x 1 3σ. Find a normal probability 11.3 a.1, 2A.1.B TEKS Use Normal Distributions Before You interpreted probability distributions. Now You will study normal distributions. Why? So you can model animal populations, as in Example 3. Key

More information

(A) 20% (B) 25% (C) 30% (D) % (E) 50%

(A) 20% (B) 25% (C) 30% (D) % (E) 50% ACT 2017 Name Date 1. The population of Green Valley, the largest suburb of Happyville, is 50% of the rest of the population of Happyville. The population of Green Valley is what percent of the entire

More information

NEW ENGLAND COMMON ASSESSMENT PROGRAM

NEW ENGLAND COMMON ASSESSMENT PROGRAM NEW ENGLAND COMMON ASSESSMENT PROGRAM Released Items Support Materials 2013 Grade 7 Mathematics N&O 6.1 Demonstrates conceptual understanding of rational numbers with respect to ratios (comparison of two

More information

Finite Mathematics : A Business Approach

Finite Mathematics : A Business Approach Finite Mathematics : A Business Approach Dr. Brian Travers and Prof. James Lampes Second Edition Cover Art by Stephanie Oxenford Additional Editing by John Gambino Contents What You Should Already Know

More information

Lecture 20 Random Samples 0/ 13

Lecture 20 Random Samples 0/ 13 0/ 13 One of the most important concepts in statistics is that of a random sample. The definition of a random sample is rather abstract. However it is critical to understand the idea behind the definition,

More information

1.) The number of points a basketball player scored each game for one week is recorded. Which is a not a statistical question for the situation?

1.) The number of points a basketball player scored each game for one week is recorded. Which is a not a statistical question for the situation? 6 th Grade Math Common Assessment: Chapter 6 Name: Date 6.SP.1 1.) The number of points a basketball player scored each game for one week is recorded. Which is a not a statistical question for the situation?

More information

AB ExamSolutions Texas A&M High School Math Contest November 8, 2014

AB ExamSolutions Texas A&M High School Math Contest November 8, 2014 AB ExamSolutions Texas A&M High School Math Contest November 8, 2014 1. What is the largest power of 2 that divides 2 2013 + 10 2013? ANSWER: 2 2014 Solution: 2 2013 + 10 2013 = 2 2013 (1 + 5 2013 ). Since

More information

11. The Normal distributions

11. The Normal distributions 11. The Normal distributions The Practice of Statistics in the Life Sciences Third Edition 2014 W. H. Freeman and Company Objectives (PSLS Chapter 11) The Normal distributions Normal distributions The

More information

EQ: What is a normal distribution?

EQ: What is a normal distribution? Unit 5 - Statistics What is the purpose EQ: What tools do we have to assess data? this unit? What vocab will I need? Vocabulary: normal distribution, standard, nonstandard, interquartile range, population

More information