2.2 Continued 9.12.2017.

Slides:



Advertisements
Similar presentations
Chapter 2: The Normal Distributions
Advertisements

Standardizing Data and Normal Model(C6 BVD) C6: Z-scores and Normal Model.
Chapter – 5.4: The Normal Model
Homework for 2.1 Day 1: 41, 43, 45, 47, 49, 51. 1) To use the rule to estimate the percent of observations from a Normal Distribution that.
Warm-up 2.5 The Normal Distribution Find the missing midpoint values, then find mean, median and standard deviation.
The Normal Distributions
Chapter 6: The Standard Deviation as a Ruler and the Normal Model
Chapter 7 Continuous Distributions. Continuous random variables Are numerical variables whose values fall within a range or interval Are measurements.
Copyright © 2013, 2009, and 2007, Pearson Education, Inc. 1 PROBABILITIES FOR CONTINUOUS RANDOM VARIABLES THE NORMAL DISTRIBUTION CHAPTER 8_B.
The distribution of heights of adult American men is approximately normal with mean 69 inches and standard deviation 2.5 inches. Use the rule.
Chapter 2.2 STANDARD NORMAL DISTRIBUTIONS. Normal Distributions Last class we looked at a particular type of density curve called a Normal distribution.
Chapter 2 The Normal Distributions “Statistically thinking will one day be as necessary for efficient citizenship as the ability to read and write.” H.
The Practice of Statistics, 5th Edition Starnes, Tabor, Yates, Moore Bedford Freeman Worth Publishers CHAPTER 2 Modeling Distributions of Data 2.2 Density.
Describing Location in a Distribution 2.1 Measures of Relative Standing and Density Curves 2.1 Measures of Relative Standing and Density Curves Text.
Think about this…. If Jenny gets an 86% on her first statistics test, should she be satisfied or disappointed? Could the scores of the other students in.
Lesson 2 - R Review of Chapter 2 Describing Location in a Distribution.
AP Statistics Chapter 2 Notes. Measures of Relative Standing Percentiles The percent of data that lies at or below a particular value. e.g. standardized.
The Practice of Statistics, 5th Edition Starnes, Tabor, Yates, Moore Bedford Freeman Worth Publishers CHAPTER 2 Modeling Distributions of Data 2.2 Density.
The Normal Distribution. The Area under the curve The area under the curve represents everything: 100%.
Chapter 2 Modeling Distributions of Data Objectives SWBAT: 1)Find and interpret the percentile of an individual value within a distribution of data. 2)Find.
Ch 2 The Normal Distribution 2.1 Density Curves and the Normal Distribution 2.2 Standard Normal Calculations.
Normal Distributions.
The Normal Distribution: Comparing Apples and Oranges.
Lesson 2 - R Review of Chapter 2 Describing Location in a Distribution.
Welcome to the Wonderful World of AP Stats.…NOT! Chapter 2 Kayla and Kelly.
Chapter 6 (part 2) WHEN IS A Z-SCORE BIG? NORMAL MODELS A Very Useful Model for Data.
Density Curves & Normal Distributions Textbook Section 2.2.
AP Statistics The Standard Deviation as a Ruler and the Normal Model Chapter 6 Part 2.
Warm up Find the area under a normal curve using the following information: Z is between and 1.65 Z is between 0.50 and 1.79.
Chapter 2.2 STANDARD NORMAL DISTRIBUTIONS. Normal Distributions Last class we looked at a particular type of density curve called a Normal distribution.
Section 2.1 Density Curves
Continuous random variables
The distribution of heights of adult American men is approximately normal with mean 69 inches and standard deviation 2.5 inches. Use the rule.
2.2 Normal Distributions
Introductory Statistics Introductory Statistics
Continuous Distributions
CHAPTER 2 Modeling Distributions of Data
CHAPTER 2 Modeling Distributions of Data
Entry Task Chapter 2: Describing Location in a Distribution
6.4: Applications of the Standard Normal Distribution
Describing Location in a Distribution
Do NOT glue (we’ll do that later)—simply type the data into List 1
CHAPTER 2 Modeling Distributions of Data
the Normal Model chapter 6 (part deux)
Good Afternoon! Agenda: Knight’s Charge-please wait for direction
Z-scores & Shifting Data
Other Normal Distributions
Section 2.2: Normal Distributions
CHAPTER 2 Modeling Distributions of Data
Advanced Placement Statistics Chapter 2.2: Normal Distributions
Warm-up We are going to collect some data and determine if it is “normal” Roll each pair of dice 10 times and record the SUM of the two digits in your.
the Normal Distribution
12/1/2018 Normal Distributions
CHAPTER 2 Modeling Distributions of Data
Chapter 6: Normal Distributions
CHAPTER 2 Modeling Distributions of Data
Warmup Normal Distributions.
Continuous Random Variables
CHAPTER 2 Modeling Distributions of Data
Honors Statistics The Standard Deviation as a Ruler and the Normal Model Chapter 6 Part 3.
2.2 Normal Distributions Normal Curves: symmetric, single-peaked, bell- shaped. and median are the same. Size of the will affect the spread of.
CHAPTER 2 Modeling Distributions of Data
Continuous Distributions
CHAPTER 2 Modeling Distributions of Data
The Normal Curve Section 7.1 & 7.2.
CHAPTER 2 Modeling Distributions of Data
CHAPTER 2 Modeling Distributions of Data
CHAPTER 2 Modeling Distributions of Data
CHAPTER 2 Modeling Distributions of Data
CHAPTER 2 Modeling Distributions of Data
Presentation transcript:

2.2 Continued 9.12.2017

Normalcdf in reverse Normalcdf (or Table A) tells us what proportion of the area under a normal distribution is between two values InvNorm tells us the value that has a certain proportion of the area to the left of it (less than it) So if we want to know the score on our chapter 1 test for which 75% of people scored lower 75th percentile, or 3rd quartile invNorm(.75,68,14)=77.44 What if we want to know the score for which 75% scored higher?

Normalcdf in reverse Normalcdf (or Table A) tells us what proportion of the area under a normal distribution is between two values InvNorm tells us the value that has a certain proportion of the area to the left of it (less than it) So if we want to know the score on our chapter 1 test for which 75% of people scored lower 75th percentile, or 3rd quartile invNorm(.75,68,14)=77.44 What if we want to know the score which 75% scored higher? InvNorm(.25,68,14)=58.56

Assessing Normality Many variables can be safely approximated by a Normal distribution Test scores, for example Some other variables often have skewed distributions, so a Normal curve is not a good approximation Income, housing prices, survival times of cancer patients, etc. So we want to be able to assess whether a distribution is (approximately) Normal before we use any calculations like 68-95-99.7 , Table A, normalcdf, or invNorm

Assessing Normality– Option #1 LOOK AT THE DISTRIBUTION Histogram, dotplot, or density curve Does it look Normal? Is it skewed? If yes, not Normal Does it have multiple peaks? Or no peaks? Does it look bell-shaped? If no, not Normal

Assessing Normality—Option #2 Use the 68-95-99.7 Rule Hypothetically, let’s say that you have some data, and 69% are within one standard deviation of the mean, 93% are within two standard deviations of the mean, and 100% are within 3 standard deviations of the mean This is very close to what we would expect from a Normal distribution, so we could say that these data are consistent with a Normal Distribution

Assessing Normality—Option #3 Normal Probability plot Plots Z-scores on the y-axis and values for your variable on the x-axis Some people flip these If the points form a perfectly straight line, then it is perfectly Normal If it is close to being straight, with only small deviations, then we can still say that it is approximately Normal

Approx. Normal Skewed

Chapter 1 Test Scores

How did the Curve Work? Raw scores: Mean: 68.43 St. Dev: 13.52 Max: 96 So the z-score for someone who got a 96 would be (96-68.43)/13.52= 2.04 But I wanted our scores to have a mean of 80, and I wanted to have the highest score be 100 So I created a new Distribution with a mean of 80 But if I kept the same standard deviation, then the person with the 96 would now have above 107% --not what I want So I had to figure out a new standard deviation

The Curve To find the new standard deviation, I am just finding what standard deviation would make that highest score (96) become 100, when the mean is changed to 80 That ends up being 9.81 So now we have changed the mean from 68.43 to 80, and the standard deviation from 13.52 to 9.81

The Curve I calculate everybody’s z-score, and then use it to put them on the new distribution So for someone who got a raw score of 91, their z-score was 1.67 ( (91-68.43)/13.52) Then we can use the z-score formula to put that person onto the new distribution 1.67=((X-80)/9.81) X=96.38 So a 91 raw score was curved to a 96.38

The Curve We can go in the other direction too If your curved score was 76.79 Z=((76.79-80)/9.81) = -.33 -.33=((X-68.43)/13.52) = 64