Z-tables. January 12, This tutorial covers how to find areas under normal distributions using a z-table.

Size: px
Start display at page:

Download "Z-tables. January 12, This tutorial covers how to find areas under normal distributions using a z-table."

Transcription

1 Z-tables January 12, 2019 Contents The standard normal distribution Areas above Areas below the mean Areas between two values of Finding -scores from areas Z tables in R: Questions This tutorial covers how to find areas under normal distributions using a -table The standard normal distribution Thanks to the central limit theorem distributions of means often fall into a normal bellshaped distribution Since we ll be dealing with means as dependent measures a lot this quarter and in our research, we ll need to be familiar with the properties of the normal distribution All normal distributions have the same shape They only differ by their means and standar deviations The general equation for the normal probability distribution is: e (x µ)2 2πσ Where µ is the mean and σ is the standard deviation of the distribution (It s kind of remarkable that this ubiquitous function has two famous transcendental numbers in it, e, and π, plus the irrational number 2) We choose one particular normal distribution, the standard normal, as a reference for tables The standard normal distribution, or -distribution has a mean of ero and a standard deviation of 1 The standard normal s probability distribution function simplifies to: e x2 2π It looks like this: 1

2 Here are some exercises on using the -table to find areas under this standard normal distribution (either in the book, Excel spreadsheet, handout, R, or one of many websites or statistics programs) We ll start with an easy one: What is the area under the standard normal distribution above =0? The area is shaded in the figure below: area =05 0 The answer is 05 because the normal distribution has a total area of 1 and is symmetric about the mean of 0 Areas above Example: find the area above =1 The area is the shaded region below: 2

3 area =01587 The area can be found by using table A in the book Find the value in the first column for =1 The third column gives the area under the standard normal above The relevant part of the table should look something like this: 1 Area between mean and Area beyond On the row where the first column as = 1, the third column shows that the area under the curve above is The middle column is the area between ero and Since right-half of the area is 05, you can see that columns 2 and 3 add up to 05 (for =1, = 05) Areas below the mean Example: What is the area under the standard normal distribution below = -2? 3

4 area = Notice that the -table doesn t show areas for negative values of That s because the -distribution is symmetrical, so for our example, the area below = -2 is the same as the area above = 2: area =00228 The area above = 2 can be found in the table: 2 Area between mean and Area beyond Example: Find the area under the standard normal distribution below = 1: 4

5 area =08413 There are a couple of ways to do this one One way is to realie that since the total area is 1, the area below = 1 is equal to 1 minus the area above = 1 which we know from before is So the area below 1 is = Another way to do this is to see that the area below 1 is the sum of the area between ero and 1 and the area below ero which is 05 From second column in the table, the area between ero and 1 is So the total area is = Areas between two values of Example: What is the area under the standard normal distribution between 1 and 2? area = The trick is to understand that the area can be computed by subtracting the area above = 2 from the area above = 1: 5

6 area = area =00228 The difference is = Example: What is the area under the standard normal between = -2 and 1? 2 area = Again, there are a couple of ways to solve this one One way is to use the fact that the total 6

7 area is 1, so the area between -2 and 1 is equal to 1 minus the areas in the tails The area below = -2 is and the area above 1 is 01587: area = area =01587 So the total area is equal to = Another way to solve this one is to use the second column in table, which is the area between the mean and The area between = -2 and = 0 is the same as the area between = 0 and = 2, which according to the table is The table also tells us that the area between 0 and 1 is 03413: 1 7

8 area = area = So the total area is = Finding -scores from areas Example: Find the score for which 5% of the area under the standard normal distribution lies above 8

9 area = To solve this one we need to find the row in the table for which the third column, the area beyond, is nearest to 005: Area between mean and Area beyond So the answer is = 164 Example: Find the value of for which 10% of the area under the standard normal distribution lies below: area = We ll use the fact that the normal distribution is symmetrical, and find the -value for which 10% lies above: 9

10 area = Area between mean and Area beyond The closest value of is 128 Using symmetry, we know that 10% of the area under the standard normal distribution lies below = -128 Example: Find the values of that bracket the middle 95% of the area under the standard normal distribution area = The middle 95% of the area leaves (100-95)/2 = 25% in each of the two tails; 10

11 area =0025 area = So we need to find the -value for which the area above is 0025 Area between mean and Area beyond From the table, = 196 Therefore 95% of the area under the standard normal distribution lies between = -196 and =

12 Z tables in R: R has two functions that give you values in the -table pnorm converts -scores to areas, and qnorm converts areas to -scores The R commands shown below can be found here: TableR # The -distribution # # R s function pnorm calculates the area under the normal distribution # below a -score By default, it uses a standard normal distribution # (mean 0, sd 1) # # For example, to find the area under the standard normal below =1, we use: pnorm(1) [1] # Note that the tables in the book and the Excel spreadsheet give you # the areas ABOVE To get the values in these tables we need to subtract # the result from pnorm from 1: 1-pnorm(1) [1] # You should see that this value matches the value in the third column in # the standard normal table for =1 # The area under the standard normal below = -2 is: pnorm(-2) [1] # The area under the standard normal between =1 and =2 can be found # by finding the area below =2 and subtracting the area below =1: pnorm(2) - pnorm(1) [1] # The area between = -2 and =1 can be caculated similarly: pnorm(1) - pnorm(-2) [1] # To go the other way and find -scores from areas we use # the function qnorm # # For example, the -score for which 95% of the area of the # standard normal falls below is: qnorm(95) [1] # This is, of course the same as the -score for which 5% falls above 12

13 # To find the -score for which 10% of the area lies below we use: qnorm(1) [1] # To find the values of that bracket the middle 95% is found # by first finding the lower -score This is the -score # for which only 25% falls below: qnorm(025) [1] # Since the -distribution is symmetric, the upper value of # is just the positive sign of this: -qnorm(025) [1] # In general, if you want to find the scores that bracket # the middle p% we can first set a variable p to some value: p <- 5 # And then use c to concatenate the two -scores into a single # vector: c(qnorm((1-p)/2),-qnorm((1-p)/2)) [1] Questions Now it s your turn Here are 30 random -distribution problems and answer (including R commands) Draw pictures if it helps 1) Find the area under the standard normal distribution below = 120 pnorm(12) [1] Answer: ) Find the value of for which 93 percent of the area under standard normal distribution lies above qnorm(1-093) [1] Answer: = ) Find the area under the standard normal distribution between = 010 and =

14 pnorm(06) - pnorm(01) [1] Answer: ) Find the value of for which 5 percent of the area under standard normal distribution lies below qnorm(005) [1] Answer: = ) Find the value of for which 1 percent of the area under standard normal distribution lies above qnorm(1-001) [1] Answer: = 233 6) Find the area under the standard normal distribution below = 040 pnorm(04) [1] Answer: ) Find the area under the standard normal distribution above = pnorm(-07) [1] Answer: ) Find the value of for which 85 percent of the area under standard normal distribution lies above qnorm(1-085) [1] Answer: = ) Find the value of for which 65 percent of the area under standard normal distribution lies below qnorm(065) [1]

15 Answer: = ) Find the area under the standard normal distribution above = pnorm(17) [1] Answer: ) Find the value of for which 26 percent of the area under standard normal distribution lies above qnorm(1-026) [1] Answer: = ) Find the area under the standard normal distribution above = pnorm(01) [1] Answer: ) Find the area under the standard normal distribution between = 030 and = 180 pnorm(18) - pnorm(03) [1] Answer: ) Find the value of for which 37 percent of the area under standard normal distribution lies above qnorm(1-037) [1] Answer: = ) Find the area under the standard normal distribution above = pnorm(09) [1] Answer:

16 16) Find the value of for which 65 percent of the area under standard normal distribution lies above qnorm(1-065) [1] Answer: = ) Find the area under the standard normal distribution between = -140 and = -070 pnorm(-07) - pnorm(-14) [1] Answer: ) Find the value of for which 44 percent of the area under standard normal distribution lies below qnorm(044) [1] Answer: = ) Find the range of values which covers the middle 24 percent of the area under the standard normal distribution c(qnorm(1-(1-024)/2),-qnorm(1-(1-024)/2)) [1] Answer: Between = -031 and = ) Find the area under the standard normal distribution between = -060 and = 120 pnorm(12) - pnorm(-06) [1] Answer: ) Find the area under the standard normal distribution between = -040 and = 060 pnorm(06) - pnorm(-04) [1] Answer: ) Find the value of for which 6 percent of the area under standard normal distribution lies above 16

17 qnorm(1-006) [1] Answer: = ) Find the range of values which covers the middle 52 percent of the area under the standard normal distribution c(qnorm(1-(1-052)/2),-qnorm(1-(1-052)/2)) [1] Answer: Between = -071 and = ) Find the area under the standard normal distribution above = pnorm(-01) [1] Answer: ) Find the area under the standard normal distribution below = -130 pnorm(-13) [1] Answer: ) Find the area under the standard normal distribution above = pnorm(-13) [1] Answer: ) Find the area under the standard normal distribution between = -000 and = 100 pnorm(1) - pnorm(-0) [1] Answer: ) Find the area under the standard normal distribution below = -080 pnorm(-08) [1] Answer:

18 29) Find the range of values which covers the middle 46 percent of the area under the standard normal distribution c(qnorm(1-(1-046)/2),-qnorm(1-(1-046)/2)) [1] Answer: Between = -061 and = ) Find the value of for which 76 percent of the area under standard normal distribution lies below qnorm(076) [1] Answer: =

Using the z-table: Given an Area, Find z ID1050 Quantitative & Qualitative Reasoning

Using the z-table: Given an Area, Find z ID1050 Quantitative & Qualitative Reasoning Using the -Table: Given an, Find ID1050 Quantitative & Qualitative Reasoning between mean and beyond 0.0 0.000 0.500 0.1 0.040 0.460 0.2 0.079 0.421 0.3 0.118 0.382 0.4 0.155 0.345 0.5 0.192 0.309 0.6

More information

Standard Normal Calculations

Standard Normal Calculations Standard Normal Calculations Section 4.3 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 10-2311 Cathy Poliak, Ph.D. cathy@math.uh.edu

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

Interpreting Regression

Interpreting Regression Interpreting Regression January 10, 2018 Contents Standard error of the estimate Homoscedasticity Using R to make interpretations about regresssion Questions In the tutorial on prediction we used the regression

More information

Section 5.4. Ken Ueda

Section 5.4. Ken Ueda Section 5.4 Ken Ueda Students seem to think that being graded on a curve is a positive thing. I took lasers 101 at Cornell and got a 92 on the exam. The average was a 93. I ended up with a C on the test.

More information

The Normal Distribution

The Normal Distribution The Mary Lindstrom (Adapted from notes provided by Professor Bret Larget) February 10, 2004 Statistics 371 Last modified: February 11, 2004 The The (AKA Gaussian Distribution) is our first distribution

More information

Interpreting Regression

Interpreting Regression Interpreting Regression January 27, 2019 Contents Standard error of the estimate Homoscedasticity Using R to make interpretations about regresssion Questions In the tutorial on prediction we used the regression

More information

The Normal Table: Read it, Use it

The Normal Table: Read it, Use it The Normal Table: Read it, Use it ECO22Y1Y: 218/19; Written by Jennifer Murdock A massive flood in Grand Forks, North Dakota in 1997 cost billions to clean up. The levee could protect the town even if

More information

Inference for Single Proportions and Means T.Scofield

Inference for Single Proportions and Means T.Scofield Inference for Single Proportions and Means TScofield Confidence Intervals for Single Proportions and Means A CI gives upper and lower bounds between which we hope to capture the (fixed) population parameter

More information

6.2 Area Under the Standard Normal Curve

6.2 Area Under the Standard Normal Curve 6.2 Area Under the Standard Normal Curve Tom Lewis Fall Term 2009 Tom Lewis () 6.2 Area Under the Standard Normal Curve Fall Term 2009 1 / 6 Outline 1 The cumulative distribution function 2 The z α notation

More information

The normal distribution

The normal distribution The normal distribution Patrick Breheny March 3 Patrick Breheny to Biostatistics (BIOS 4120) 1/25 A common histogram shape Histograms of infant mortality rates, heights, and cholesterol levels: Africa

More information

9/19/2012. PSY 511: Advanced Statistics for Psychological and Behavioral Research 1

9/19/2012. PSY 511: Advanced Statistics for Psychological and Behavioral Research 1 PSY 511: Advanced Statistics for Psychological and Behavioral Research 1 The aspect of the data we want to describe/measure is relative position z scores tell us how many standard deviations above or below

More information

Note that we are looking at the true mean, μ, not y. The problem for us is that we need to find the endpoints of our interval (a, b).

Note that we are looking at the true mean, μ, not y. The problem for us is that we need to find the endpoints of our interval (a, b). Confidence Intervals 1) What are confidence intervals? Simply, an interval for which we have a certain confidence. For example, we are 90% certain that an interval contains the true value of something

More information

Distance in the Plane

Distance in the Plane Distance in the Plane The absolute value function is defined as { x if x 0; and x = x if x < 0. If the number a is positive or zero, then a = a. If a is negative, then a is the number you d get by erasing

More information

Confidence Intervals. - simply, an interval for which we have a certain confidence.

Confidence Intervals. - simply, an interval for which we have a certain confidence. Confidence Intervals I. What are confidence intervals? - simply, an interval for which we have a certain confidence. - for example, we are 90% certain that an interval contains the true value of something

More information

Similarity and recommender systems

Similarity and recommender systems Similarity and recommender systems Hiroshi Shimodaira January-March 208 In this chapter we shall look at how to measure the similarity between items To be precise we ll look at a measure of the dissimilarity

More information

Power. January 12, 2019

Power. January 12, 2019 Power January 12, 2019 Contents Definition of power Z-test example If H 0 is true If H 0 is false The 2x2 matrix of All Things That Can Happen Pr(Type I error) = α Pr(Type II error) = β power = 1 β Things

More information

Mathematics 96 (3581) CA 6: Property Identification Mt. San Jacinto College Menifee Valley Campus Spring 2013

Mathematics 96 (3581) CA 6: Property Identification Mt. San Jacinto College Menifee Valley Campus Spring 2013 Mathematics 96 (358) CA 6: Property Identification Mt. San Jacinto College Menifee Valley Campus Spring 203 Name This class addendum is worth a maximum of five (5) points. It is due no later than the end

More information

Solving Systems of Equations: A brief tutorial for

Solving Systems of Equations: A brief tutorial for Solving Systems of Equations: A brief tutorial for 15.053 This is a very brief introduction to solving systems of equations. You probably learned these techniques in high school, and you certainly learned

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

Using Tables and Graphing Calculators in Math 11

Using Tables and Graphing Calculators in Math 11 Using Tables and Graphing Calculators in Math 11 Graphing calculators are not required for Math 11, but they are likely to be helpful, primarily because they allow you to avoid the use of tables in some

More information

χ 2 Test for Frequencies January 15, 2019 Contents

χ 2 Test for Frequencies January 15, 2019 Contents χ 2 Test for Frequencies January 15, 2019 Contents Chi squared (χ 2 ) test for frequencies Example 1: left vs right handers in our class The χ 2 distribution One or two tailed? Example 2: Birthdays by

More information

Problem of the Day. 7.3 Hypothesis Testing for Mean (Small Samples n<30) Objective(s): Find critical values in a t-distribution

Problem of the Day. 7.3 Hypothesis Testing for Mean (Small Samples n<30) Objective(s): Find critical values in a t-distribution Problem of the Day Find the standardized test statistic (z) if the sample mean is 14, the standard deviation is 2, the sample size is 36, and the population mean is 15. 7.3 Hypothesis Testing for Mean

More information

ABE Math Review Package

ABE Math Review Package P a g e ABE Math Review Package This material is intended as a review of skills you once learned and wish to review before your assessment. Before studying Algebra, you should be familiar with all of the

More information

Null Hypothesis Significance Testing p-values, significance level, power, t-tests Spring 2017

Null Hypothesis Significance Testing p-values, significance level, power, t-tests Spring 2017 Null Hypothesis Significance Testing p-values, significance level, power, t-tests 18.05 Spring 2017 Understand this figure f(x H 0 ) x reject H 0 don t reject H 0 reject H 0 x = test statistic f (x H 0

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

32. SOLVING LINEAR EQUATIONS IN ONE VARIABLE

32. SOLVING LINEAR EQUATIONS IN ONE VARIABLE get the complete book: /getfulltextfullbook.htm 32. SOLVING LINEAR EQUATIONS IN ONE VARIABLE classifying families of sentences In mathematics, it is common to group together sentences of the same type

More information

Hi, my name is Dr. Ann Weaver of Argosy University. This WebEx is about something in statistics called z-

Hi, my name is Dr. Ann Weaver of Argosy University. This WebEx is about something in statistics called z- Hi, my name is Dr. Ann Weaver of Argosy University. This WebEx is about something in statistics called z- Scores. I have two purposes for this WebEx, one, I just want to show you how to use z-scores in

More information

KCP e-learning. test user - ability basic maths revision. During your training, we will need to cover some ground using statistics.

KCP e-learning. test user - ability basic maths revision. During your training, we will need to cover some ground using statistics. During your training, we will need to cover some ground using statistics. The very mention of this word can sometimes alarm delegates who may not have done any maths or statistics since leaving school.

More information

IOP2601. Some notes on basic mathematical calculations

IOP2601. Some notes on basic mathematical calculations IOP601 Some notes on basic mathematical calculations The order of calculations In order to perform the calculations required in this module, there are a few steps that you need to complete. Step 1: Choose

More information

February 5, 2018 START HERE. measurement scale. Means. number of means. independent measures t-test Ch dependent measures t-test Ch 16.

February 5, 2018 START HERE. measurement scale. Means. number of means. independent measures t-test Ch dependent measures t-test Ch 16. χ Test for Frequencies February 5, 018 Contents Chi squared (χ ) test for frequencies Example 1: left vs right handers in our class The χ distribution One or two tailed? Example : Birthdays by month Using

More information

LESSON 4-5 THE LAW OF COMMUTATIVITY

LESSON 4-5 THE LAW OF COMMUTATIVITY LESSON 4-5 THE LAW OF COMMUTATIVITY Axioms [AXE ee ums] are things we assume to be true because they seem obvious but we cannot prove them. Say with me: axiom. A. For example, if three plus four is seven,

More information

6.2 Normal Distribution. Ziad Zahreddine

6.2 Normal Distribution. Ziad Zahreddine 6.2 Normal Distribution Importance of Normal Distribution 1. Describes Many Random Processes or Continuous Phenomena 2. Can Be Used to Approximate Discrete Probability Distributions Example: Binomial 3.

More information

1 The Normal approximation

1 The Normal approximation Statistics and Linguistic Applications Hale February 3, 2010 1 The Normal approximation Review of frequency Remember frequency? That s how often a particular level appears in a data set. Take Keith Johnson

More information

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table.

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table. MA 1125 Lecture 15 - The Standard Normal Distribution Friday, October 6, 2017. Objectives: Introduce the standard normal distribution and table. 1. The Standard Normal Distribution We ve been looking at

More information

9. TRANSFORMING TOOL #2 (the Multiplication Property of Equality)

9. TRANSFORMING TOOL #2 (the Multiplication Property of Equality) 9 TRANSFORMING TOOL # (the Multiplication Property of Equality) a second transforming tool THEOREM Multiplication Property of Equality In the previous section, we learned that adding/subtracting the same

More information

Mathematics 96 (3581) CA (Class Addendum) 1: Commutativity Mt. San Jacinto College Menifee Valley Campus Spring 2013

Mathematics 96 (3581) CA (Class Addendum) 1: Commutativity Mt. San Jacinto College Menifee Valley Campus Spring 2013 Mathematics 96 (3581) CA (Class Addendum) 1: Commutativity Mt. San Jacinto College Menifee Valley Campus Spring 2013 Name This class handout is worth a maximum of five (5) points. It is due no later than

More information

Sometimes the domains X and Z will be the same, so this might be written:

Sometimes the domains X and Z will be the same, so this might be written: II. MULTIVARIATE CALCULUS The first lecture covered functions where a single input goes in, and a single output comes out. Most economic applications aren t so simple. In most cases, a number of variables

More information

Mathematics 90 (3122) CA (Class Addendum) 3: Inverse Properties Mt. San Jacinto College Menifee Valley Campus Fall 2009

Mathematics 90 (3122) CA (Class Addendum) 3: Inverse Properties Mt. San Jacinto College Menifee Valley Campus Fall 2009 Mathematics 90 (322) CA (Class Addendum) 3: Inverse Properties Mt. San Jacinto College Menifee Valley Campus Fall 2009 Solutions Name This class handout is worth a maimum of five (5) points. It is due

More information

Medium Term Plans for Mathematics (aligned with the 2014 National Curriculum) -Year Two (Spring Term)

Medium Term Plans for Mathematics (aligned with the 2014 National Curriculum) -Year Two (Spring Term) Oral mental starters (ongoing, throughout the term): Count forwards from 0, backwards in twos, fives tens to the 10 th multiple Recall multiplication division facts for the, 10 times tables Count forwards

More information

NUMBER. Here are the first 20 prime numbers: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71.

NUMBER. Here are the first 20 prime numbers: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71. NUMBER Types of Number Prime Numbers A prime number is a number which can only be divided by 1 or itself. The smallest prime number is 2. 2 can only be divided by 2 or 1. Here are the first 20 prime numbers:

More information

LECTURE 15: SIMPLE LINEAR REGRESSION I

LECTURE 15: SIMPLE LINEAR REGRESSION I David Youngberg BSAD 20 Montgomery College LECTURE 5: SIMPLE LINEAR REGRESSION I I. From Correlation to Regression a. Recall last class when we discussed two basic types of correlation (positive and negative).

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 Lecture 9 (MWF) Calculations for the normal distribution Suhasini Subba Rao Evaluating probabilities

More information

1 Normal Distribution.

1 Normal Distribution. Normal Distribution.. Introduction A Bernoulli trial is simple random experiment that ends in success or failure. A Bernoulli trial can be used to make a new random experiment by repeating the Bernoulli

More information

Sums of Squares (FNS 195-S) Fall 2014

Sums of Squares (FNS 195-S) Fall 2014 Sums of Squares (FNS 195-S) Fall 014 Record of What We Did Drew Armstrong Vectors When we tried to apply Cartesian coordinates in 3 dimensions we ran into some difficulty tryiing to describe lines and

More information

Probability and Samples. Sampling. Point Estimates

Probability and Samples. Sampling. Point Estimates Probability and Samples Sampling We want the results from our sample to be true for the population and not just the sample But our sample may or may not be representative of the population Sampling error

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES HONORS ALGEBRA II. 1 st Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES HONORS ALGEBRA II. 1 st Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES HONORS ALGEBRA II 1 st Nine Weeks, 2016-2017 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

Review of Basic Probability Theory

Review of Basic Probability Theory Review of Basic Probability Theory James H. Steiger Department of Psychology and Human Development Vanderbilt University James H. Steiger (Vanderbilt University) 1 / 35 Review of Basic Probability Theory

More information

Math 2311 Sections 4.1, 4.2 and 4.3

Math 2311 Sections 4.1, 4.2 and 4.3 Math 2311 Sections 4.1, 4.2 and 4.3 4.1 - Density Curves What do we know about density curves? Example: Suppose we have a density curve defined for defined by the line y = x. Sketch: What percent of observations

More information

Algebra is a part of mathematics in which numbers and letters are used. Numbers and letters are combined by the arithmetic operations.

Algebra is a part of mathematics in which numbers and letters are used. Numbers and letters are combined by the arithmetic operations. Colegio Herma. Maths. Bilingual Department by Isabel Martos Martínez. 2013 WHAT IS ALGEBRA? Algebra is a part of mathematics in which numbers and letters are used. Numbers and letters are combined by the

More information

Chapter 6 The Standard Deviation as a Ruler and the Normal Model

Chapter 6 The Standard Deviation as a Ruler and the Normal Model Chapter 6 The Standard Deviation as a Ruler and the Normal Model Overview Key Concepts Understand how adding (subtracting) a constant or multiplying (dividing) by a constant changes the center and/or spread

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part II 1 st Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part II 1 st Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA I Part II 1 st Nine Weeks, 2016-2017 OVERVIEW Algebra I Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

REVIEW Chapter 1 The Real Number System

REVIEW Chapter 1 The Real Number System REVIEW Chapter The Real Number System In class work: Complete all statements. Solve all exercises. (Section.4) A set is a collection of objects (elements). The Set of Natural Numbers N N = {,,, 4, 5, }

More information

TECHNIQUES IN FACTORISATION

TECHNIQUES IN FACTORISATION TECHNIQUES IN FACTORISATION The process where brackets are inserted into an equation is referred to as factorisation. Factorisation is the opposite process to epansion. METHOD: Epansion ( + )( 5) 15 Factorisation

More information

Graphical Analysis; and Vectors

Graphical Analysis; and Vectors Graphical Analysis; and Vectors Graphs Drawing good pictures can be the secret to solving physics problems. It's amazing how much information you can get from a diagram. We also usually need equations

More information

DIRECTED NUMBERS ADDING AND SUBTRACTING DIRECTED NUMBERS

DIRECTED NUMBERS ADDING AND SUBTRACTING DIRECTED NUMBERS DIRECTED NUMBERS POSITIVE NUMBERS These are numbers such as: 3 which can be written as +3 46 which can be written as +46 14.67 which can be written as +14.67 a which can be written as +a RULE Any number

More information

A constant is a value that is always the same. (This means that the value is constant / unchanging). o

A constant is a value that is always the same. (This means that the value is constant / unchanging). o Math 8 Unit 7 Algebra and Graphing Relations Solving Equations Using Models We will be using algebra tiles to help us solve equations. We will practice showing work appropriately symbolically and pictorially

More information

Grade 6 Math Circles October 9 & Visual Vectors

Grade 6 Math Circles October 9 & Visual Vectors Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 6 Math Circles October 9 & 10 2018 Visual Vectors Introduction What is a vector? How does it differ

More information

Oddo-Harkins rule of element abundances

Oddo-Harkins rule of element abundances Page 1 of 5 Oddo-Harkins rule of element abundances To instructors This is a simple exercise that is meant to introduce students to the concept of isotope ratios, simple counting statistics, intrinsic

More information

Math 140 Introductory Statistics

Math 140 Introductory Statistics Box Plots Math 140 Introductory Statistics Professor B. Ábrego Lecture 6 Sections 2.3, 2.4, and 2.5 11,12,20,25,30,30,30,32,35, 39,40,40,40,42,45,48,50,70. = 11 Q 1 = 30 Median = 37 Q 3 = 42 = 70. = 70

More information

Lecture 10: The Normal Distribution. So far all the random variables have been discrete.

Lecture 10: The Normal Distribution. So far all the random variables have been discrete. Lecture 10: The Normal Distribution 1. Continuous Random Variables So far all the random variables have been discrete. We need a different type of model (called a probability density function) for continuous

More information

2) case we obtained a zero determinant when one row was a multiple of the other (or is the same as the other), and this remains true of the (3 3)

2) case we obtained a zero determinant when one row was a multiple of the other (or is the same as the other), and this remains true of the (3 3) Section 11 Rank and Linear Dependence In an early section, we learnt that the number of solutions in a system of linear equations depends on the number of independent equations in the system relative to

More information

4-1 Matrices and Data

4-1 Matrices and Data 4-1 Matrices and Data Warm Up Lesson Presentation Lesson Quiz 2 The table shows the top scores for girls in barrel racing at the 2004 National High School Rodeo finals. The data can be presented in a table

More information

Experiment 1: The Same or Not The Same?

Experiment 1: The Same or Not The Same? Experiment 1: The Same or Not The Same? Learning Goals After you finish this lab, you will be able to: 1. Use Logger Pro to collect data and calculate statistics (mean and standard deviation). 2. Explain

More information

Notes on the Z-transform, part 4 1

Notes on the Z-transform, part 4 1 Notes on the Z-transform, part 4 5 December 2002 Solving difference equations At the end of note 3 we saw how to solve a difference equation using Z-transforms. Here is a similar example, solve x k+2 6x

More information

Sections 5.1 and 5.2

Sections 5.1 and 5.2 Sections 5.1 and 5.2 Shiwen Shen Department of Statistics University of South Carolina Elementary Statistics for the Biological and Life Sciences (STAT 205) 1 / 19 Sampling variability A random sample

More information

Correlation. January 11, 2018

Correlation. January 11, 2018 Correlation January 11, 2018 Contents Correlations The Scattterplot The Pearson correlation The computational raw-score formula Survey data Fun facts about r Sensitivity to outliers Spearman rank-order

More information

Chapter 5. Piece of Wisdom #2: A statistician drowned crossing a stream with an average depth of 6 inches. (Anonymous)

Chapter 5. Piece of Wisdom #2: A statistician drowned crossing a stream with an average depth of 6 inches. (Anonymous) Chapter 5 Deviating from the Average In This Chapter What variation is all about Variance and standard deviation Excel worksheet functions that calculate variation Workarounds for missing worksheet functions

More information

Biostatistics: Correlations

Biostatistics: Correlations Biostatistics: s One of the most common errors we find in the press is the confusion between correlation and causation in scientific and health-related studies. In theory, these are easy to distinguish

More information

Error Analysis General Chemistry Laboratory November 13, 2015

Error Analysis General Chemistry Laboratory November 13, 2015 Error Analysis General Chemistry Laboratory November 13, 2015 Error and uncertainty may seem synonymous with trivial mistakes in the lab, but they are well defined aspects of any numerical measurement

More information

The Chi-Square Distributions

The Chi-Square Distributions MATH 03 The Chi-Square Distributions Dr. Neal, Spring 009 The chi-square distributions can be used in statistics to analyze the standard deviation of a normally distributed measurement and to test the

More information

Patterns and Relations

Patterns and Relations Where a, b and care integers. a(x.b)2c b:c,a.io ax bc :b,a:o ax=b the farm: P.2: Model and solve problems, concretely, pictorially and symbolically, using linear equations of P.1: Graph and analyze two-variable

More information

8. TRANSFORMING TOOL #1 (the Addition Property of Equality)

8. TRANSFORMING TOOL #1 (the Addition Property of Equality) 8 TRANSFORMING TOOL #1 (the Addition Property of Equality) sentences that look different, but always have the same truth values What can you DO to a sentence that will make it LOOK different, but not change

More information

1.1.1 Algebraic Operations

1.1.1 Algebraic Operations 1.1.1 Algebraic Operations We need to learn how our basic algebraic operations interact. When confronted with many operations, we follow the order of operations: Parentheses Exponentials Multiplication

More information

Math 31 Lesson Plan. Day 2: Sets; Binary Operations. Elizabeth Gillaspy. September 23, 2011

Math 31 Lesson Plan. Day 2: Sets; Binary Operations. Elizabeth Gillaspy. September 23, 2011 Math 31 Lesson Plan Day 2: Sets; Binary Operations Elizabeth Gillaspy September 23, 2011 Supplies needed: 30 worksheets. Scratch paper? Sign in sheet Goals for myself: Tell them what you re going to tell

More information

Substitution & Formulae

Substitution & Formulae Substitution & Formulae In mathematics, engineering and science, formulae are used to relate physical quantities to each other. They provide rules so that if we know the values of certain quantities, we

More information

Math 140 Introductory Statistics

Math 140 Introductory Statistics Math 140 Introductory Statistics Professor Silvia Fernández Chapter 2 Based on the book Statistics in Action by A. Watkins, R. Scheaffer, and G. Cobb. Visualizing Distributions Recall the definition: The

More information

Math 140 Introductory Statistics

Math 140 Introductory Statistics Visualizing Distributions Math 140 Introductory Statistics Professor Silvia Fernández Chapter Based on the book Statistics in Action by A. Watkins, R. Scheaffer, and G. Cobb. Recall the definition: The

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

MTHSC 3110 Section 1.1

MTHSC 3110 Section 1.1 MTHSC 3110 Section 1.1 Kevin James A system of linear equations is a collection of equations in the same set of variables. For example, { x 1 + 3x 2 = 5 2x 1 x 2 = 4 Of course, since this is a pair of

More information

Chapter 7: Correlation

Chapter 7: Correlation Chapter 7: Correlation Oliver Twisted Please, Sir, can I have some more confidence intervals? To use this syntax open the data file CIr.sav. The data editor looks like this: The values in the table are

More information

The Plane of Complex Numbers

The Plane of Complex Numbers The Plane of Complex Numbers In this chapter we ll introduce the complex numbers as a plane of numbers. Each complex number will be identified by a number on a real axis and a number on an imaginary axis.

More information

Bayesian Inference for Normal Mean

Bayesian Inference for Normal Mean Al Nosedal. University of Toronto. November 18, 2015 Likelihood of Single Observation The conditional observation distribution of y µ is Normal with mean µ and variance σ 2, which is known. Its density

More information

Vectors. A vector is usually denoted in bold, like vector a, or sometimes it is denoted a, or many other deviations exist in various text books.

Vectors. A vector is usually denoted in bold, like vector a, or sometimes it is denoted a, or many other deviations exist in various text books. Vectors A Vector has Two properties Magnitude and Direction. That s a weirder concept than you think. A Vector does not necessarily start at a given point, but can float about, but still be the SAME vector.

More information

What are Continuous Random Variables? Continuous Random Variables and the Normal Distribution. Normal Distribution. When dealing with a PDF

What are Continuous Random Variables? Continuous Random Variables and the Normal Distribution. Normal Distribution. When dealing with a PDF Continuous Random Variables and the Normal Distribution Dr. Tom Ilvento FREC 408 What are Continuous Random Variables? Unlike Discrete Random Variables, Continuous Random Variables take on any point in

More information

Power series and Taylor series

Power series and Taylor series Power series and Taylor series D. DeTurck University of Pennsylvania March 29, 2018 D. DeTurck Math 104 002 2018A: Series 1 / 42 Series First... a review of what we have done so far: 1 We examined series

More information

Regression. ECO 312 Fall 2013 Chris Sims. January 12, 2014

Regression. ECO 312 Fall 2013 Chris Sims. January 12, 2014 ECO 312 Fall 2013 Chris Sims Regression January 12, 2014 c 2014 by Christopher A. Sims. This document is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License What

More information

Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Algebra 1

Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Algebra 1 8-7 Warm Up Lesson Presentation Lesson Quiz Algebra 1 Warm Up Find each square root. 1. 6 2. 11 3. 25 4. Solve each equation. x = 10 5. 6x = 60 6. 7. 2x 40 = 0 8. 5x = 3 x = 20 x = 80 Objective Solve quadratic

More information

Curvaceous Circles BUT IT DOES WORK! Yep we can still relate the formula for the area of a circle to the formula for the area of a rectangle

Curvaceous Circles BUT IT DOES WORK! Yep we can still relate the formula for the area of a circle to the formula for the area of a rectangle Curvaceous Circles So our running theme on our worksheets has been that all the formulas for calculating the area of various shapes comes back to relating that shape to a rectangle. But how can that possibly

More information

Rational Numbers. An Introduction to the Unit & Math 8 Review. Math 9 Mrs. Feldes

Rational Numbers. An Introduction to the Unit & Math 8 Review. Math 9 Mrs. Feldes Rational Numbers An Introduction to the Unit & Math 8 Review Math 9 Mrs. Feldes In this Unit, we will: Compare & order numbers using a variety of strategies. Strategies include: drawing pictures & number

More information

Lecture Tutorial: Using Astronomy Picture of the Day to learn about the life cycle of stars

Lecture Tutorial: Using Astronomy Picture of the Day to learn about the life cycle of stars Lecture Tutorial: Using Astronomy Picture of the Day to learn about the life cycle of stars For this exercise, you will need an ipad or computer and access to the internet. We will be using the website

More information

Descriptive statistics

Descriptive statistics Patrick Breheny February 6 Patrick Breheny to Biostatistics (171:161) 1/25 Tables and figures Human beings are not good at sifting through large streams of data; we understand data much better when it

More information

STEP Support Programme. Hints and Partial Solutions for Assignment 17

STEP Support Programme. Hints and Partial Solutions for Assignment 17 STEP Support Programme Hints and Partial Solutions for Assignment 7 Warm-up You need to be quite careful with these proofs to ensure that you are not assuming something that should not be assumed. For

More information

GMAT Arithmetic: Challenge (Excerpt)

GMAT Arithmetic: Challenge (Excerpt) GMAT Arithmetic: Challenge (Excerpt) Jeff Sackmann / GMAT HACKS January 2013 Contents 1 Introduction 2 2 Difficulty Levels 3 3 Problem Solving 4 4 Data Sufficiency 5 5 Answer Key 7 6 Explanations 8 1 1

More information

Revision Mathematics

Revision Mathematics Essential Mathematics & Statistics for Science by Dr G Currell & Dr A A Dowman Revision Mathematics To navigate through these notes - use the Bookmarks on the left-hand menu. Contents: Page Number Line

More information

Sampling Distributions of the Sample Mean Pocket Pennies

Sampling Distributions of the Sample Mean Pocket Pennies You will need 25 pennies collected from recent day-today change Some of the distributions of data that you have studied have had a roughly normal shape, but many others were not normal at all. What kind

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER /2018

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER /2018 ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 2017/2018 DR. ANTHONY BROWN 1. Arithmetic and Algebra 1.1. Arithmetic of Numbers. While we have calculators and computers

More information

Stat 20 Midterm 1 Review

Stat 20 Midterm 1 Review Stat 20 Midterm Review February 7, 2007 This handout is intended to be a comprehensive study guide for the first Stat 20 midterm exam. I have tried to cover all the course material in a way that targets

More information

4.2 The Normal Distribution. that is, a graph of the measurement looks like the familiar symmetrical, bell-shaped

4.2 The Normal Distribution. that is, a graph of the measurement looks like the familiar symmetrical, bell-shaped 4.2 The Normal Distribution Many physiological and psychological measurements are normality distributed; that is, a graph of the measurement looks like the familiar symmetrical, bell-shaped distribution

More information

1 Review of the dot product

1 Review of the dot product Any typographical or other corrections about these notes are welcome. Review of the dot product The dot product on R n is an operation that takes two vectors and returns a number. It is defined by n u

More information