SPSS Basics for Probability Distributions

Size: px
Start display at page:

Download "SPSS Basics for Probability Distributions"

Transcription

1 Built-in Statistical Functions in SPSS Begin by defining some variables in the Variable View of a data file, save this file as Probability_Distributions.sav and save the corresponding output file as Probability_Distributions.spo. Accessing built-in statistical functions (and others) in SPSS is fairly straightforward when using the Transform then Compute Variable option, see below The Compute Variable window then opens Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 1 of 28

2 For the present, let s identify where the various distribution related functions are located. The menu of all available functions in SPSS is in the box labeled Function group:, selecting one of the function groups provides a sub-menu in the Functions and Special Variables box. By selecting CDF & Noncentral CDF access can be gained to a list of Cumulative Distribution Functions. By selecting PDF & Noncentral PDF access can be gained to a list of Probability Density Functions Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 2 of 28

3 By selecting Inverse DF access can be gained to Inverse functions for Cumulative Probabilities. Selecting Random Numbers provides access to a list of Random Number Generators within specific probability distributions Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 3 of 28

4 Selecting Significance provides access to functions which may be used in computing a Significance (commonly referred to as p-value) corresponding to the F- and Chi-Square distributions. Selecting Statistical provides access to some of the more routine functions used in statistical computations. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 4 of 28

5 Finally, selecting Arithmetic provides access to a list of commonly used arithmetic, algebraic and transcendental functions which might be needed. When using any of the above identified functions (or any others, for that matter), a Target Variable has to be defined or listed and then a Numeric Expression (a desired computational formula) which may or may not involve built in functions will need to be entered. This formula also may or may not involve other variables listed in the data file. Once the computational formula is entered and the OK button is clicked SPSS will compute values for every row that has at least one data value in it. Computing Probabilities and their Inverses Consider the following simple examples. Working with built-in functions for the Binomial Distribution Go to the Data View of the data file, enter the data values 5, 10, 15 and 20 for the variable x. The following discussion addresses computations of cumulative probabilities for binomial distributions. Open the Compute Variable window, identify Binomial as the Target Variable, then select CDF & Noncentral CDF in the Function group box and highlight Cdf.Binom. To place this function in the Numeric Expression box, click on the upward-arrow button located right next to the Function group box. When ever a function or special variable is highlighted in the Functions and Special Variables box, a description will appear in the central space reserved for instructions and/or descriptions right below the calculator key-pad. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 5 of 28

6 In this case, note that the Numeric Expression CDF.BINOM(?,?,?) requires a quant, an n, and a prob. This function computes a probability of the form P(X x) = CDF.BINOM(x, n, p) for a binomial distribution with probability of success p and number of trials n. Put x for the 1 st? SPSS takes x s value from the data file, set n = 23 and p = Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 6 of 28

7 Now click on OK, a little window will pop up asking if the existing values of the variable should be changed. Select OK. The output file will be updated with a log of the computation performed, and the data file will now contain the cumulative probabilities P(x 5), P(x 10), P(x 15) and P(x 20) For the binomial distribution with parameters n = 23 and p = Adjust the decimal places for the variable Binomial to four places, then copy the values from Binomial to the variable p reset the decimal places for p as well Now, suppose the reverse computation is desired, i.e., find x for which the cumulative probability is and so on note that the answers are already given in the variable x, but consider a process for finding these values. It appears that SPSS does not have inverse functions associated with cumulative probabilities for discrete probability distributions. This provides an opportunity to illustrate the use of SPSS Command Syntax. A Command Syntax Illustration: Begin by opening a Syntax file (as opposed to a data or output file). Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 7 of 28

8 In this new file, type in the command syntax shown below and save the file as InvBinom.sps. Note that all text that follow a /* are comments for user reference they tell users of the program what a particular code s purpose is. Now, to run the program, select Run and then All. Open the data file and notice the new values placed under InvBinom Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 8 of 28

9 The values entered are exactly those under the variable x. Comments about the above Program and Command Syntax: In general, when dealing with a binomial distribution it is the probability of success that is of most interest this being the quantity which might need estimating. The above program will work only if you are dealing with a theoretically exact set of probabilities. Its introduction here is for illustrative purposes only. Advanced users of SPSS will be the ones who find most use out of the Command Syntax language of SPSS, most users will never find a need for it. A point to note is that in order to be able to make effective use of the Command Syntax feature a user will need familiarity with computer programming and a reasonably high level of comfort with mathematics. In computing probabilities of the form P(X = x) for a binomial distribution using SPSS built-in function, the Function group: PDF & Noncentral PDF is opened and in Functions & Special Variables: the function Pdf.Binom is called up Thus, for a binomial distribution with parameters n and p (n trials and probability of success p), P(X = x) = Pdf.Binom(x, n, p). Use this function in the same manner as which cumulative frequencies were computed earlier. Be sure to assign a target variable. Working with built-in functions for the Normal Distribution As with binomial distributions, the main characteristics of a normal distribution are determined by two parameters. For the normal distribution (for the built-in functions in SPSS at least) the two parameters are the mean μ and the standard deviation σ (occasionally the variance is used instead of the standard deviation). Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 9 of 28

10 Thus, to compute cumulative frequencies corresponding to the given values of x in the data file the population mean and standard deviation of the random variable X are needed. Remember that the normal distribution is a theoretical distribution, thus, at best, one may estimate the true mean and standard deviation. Suppose the data given earlier is obtained from a normal distribution with μ = 6.25 and standard deviation σ = 3.5. As with the binomial distribution, the cumulative frequency distribution function for a normal distribution with mean μ and standard deviation σ is accessed by opening the Compute Variable window and then selecting Cdf.Normal. The Numeric Expression entered below computes the probability P( - < X < x), where x represents the data value being used in the function expression Being sure to identify a target variable, click on OK to get Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 10 of 28

11 Note that to compute a cumulative probability of the form P(a < X < b) using SPSS, one would use the numeric expression Cdf.Normal(b, μ, σ) - Cdf.Normal(a, μ, σ). Increase the number of decimal places, if desired, for the variable Normal and then copy and paste the newly computed values into the variable p. Now, consider finding values for x for which P( - < X < x) = p. Think of this task as solving this equation for x. SPSS does this through the function Idf.Normal Keeping the same values μ = 6.25 and standard deviation σ = 3.5, and setting up the Compute Variable window as The values computed show up in Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 11 of 28

12 Unlike as was the case in the binomial distribution, the function Pdf.Norm(x, μ, σ) does not return the value of P(X = x). This function computes the probability density of the normal distribution, with specified mean μ and standard deviation σ, at x see the general discussion on normal distributions in the text. This function can be used to obtain the graph of the normal distribution curve (with specified mean μ and standard deviation σ), however, this function will not play much of a direct role in this course. Working with built-in functions for the t-distribution The parameter needed to determine a t-distribution is the degrees of freedom, df = n 1. Computing probabilities using a t-distribution follows the same steps as for binomial and normal distributions. The cumulative frequency distribution function for a t-distribution with degrees of freedom df = n 1 is accessed by opening the Compute Variable window and then selecting Cdf.T. The Numeric Expression entered returns the probability P( - < T < x). Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 12 of 28

13 The values computed show up in As in previous cases, inverses of probabilities can be computed to get Note: Some poor notation has crept in, my apologies in the above data file the letter t represents a probability. In practice the letter t is reserved for the t-value of a t- distribution. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 13 of 28

14 The probability density function of t-distributions will not play much of a direct role in this course. Working with built-in functions for the χ 2 -Distribution The parameter needed to determine a (Chi-square) χ 2 -distribution is again the degrees of freedom, df = n 1. Computing probabilities follows the same steps as before. The cumulative frequency distribution function for a χ 2 -distribution with degrees of freedom df = n 1 is accessed by opening the Compute Variable window and then selecting Cdf.Chisq. The Numeric Expression entered returns the probability P( - < χ 2 < x). The computed values appear in Note: Once again, be aware of the poor notation. Here, the variable Chi represents probabilities and the variable InvChi represents χ 2 -values of the χ 2 -distribution. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 14 of 28

15 To obtain inverses of probabilities (i.e., to find the x-values ) involving a χ 2 - distribution, the process is the same as before. Again, the probability density function of χ 2 -distributions will not play much of a direct role in this course. Working with built-in functions for the F-Distribution First, change the variable F to FProb. When working with F-distributions, the parameters needed to determine a distribution include two degrees of freedom, df N (of the numerator) and df D (of the denominator). Computing probabilities follows the same steps as before here suppose, for the sake of example, that the two degrees of freedom are df N = 3 and df D = 5. The cumulative frequency distribution function for the desired F-distribution is accessed by opening the Compute Variable window and then selecting Cdf.F. The Numeric Expression entered returns the probability P( - < F < x). Similarly, the inverse of a probability involving an F-distribution is accessed by opening the Compute Variable window and then selecting Idf.F. The Compute Variable windows for each of these are shown on the next page, the first being for computing probabilities. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 15 of 28

16 Then for inverses of probabilities The results of the above computations are Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 16 of 28

17 Yet again, the probability density function of F-distributions will not play much of a direct role in this course. Assessing the Normality of a Random Variable Graphically A common method for determining whether the underlying population of a random variable, say X, for a set of data is (approximately) normally distributed is to use what is generically called a normal probability plot. Here, a particular type of normal probability called a Q-Q normal probability plot for a given set of data is obtained from scratch, and then using a built-in routine available in SPSS. The data used are shown below Computational Procedures for Obtaining a Q-Q Normal Probability Plot Begin by first sorting the data in ascending order. To do this, select Data on the toolbar and then click on Sort Cases as shown below Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 17 of 28

18 In the Sort Cases window, identify the variable to be sorted and the Sort Order The result will be Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 18 of 28

19 Now insert a new variable before the variable x, Name this new variable i and for this variable, enter the values 1,2,, 12. Now obtain the plotting position using Blom s approximation this uses the formula i p = n Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 19 of 28

20 This is done using the Compute Variable feature. Adjust the decimal places for the computed variable values to 4 places. Though not necessary, now standardize the x-values using the mean and standard deviation of the sample. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 20 of 28

21 You will have to compute the mean and standard deviation for the data first. One way to do this is to use the SPSS routine Then It is useful to note that SPSS provides a means of obtaining standardized values see Save standardized values as variables in the Descriptives window above. The standardized values are computed using the formula z = x x s Where x is the mean of the data values and s is the standard deviation. You can limit the amount of output by opening the Options window and selecting only that which is desired see below. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 21 of 28

22 The standardized values are saved under the variable name Zx, these values will be referred to as Observed Values The next step in the process is to compute the Expected Values. Since it is the normality of the data that is being examined, the distribution used to obtain these expected values is a normal distribution. Furthermore, since the observed data values have been standardized it makes sense to use the Standard Normal distribution. Each plotting position p provides the cumulative probability associated with the rank of the corresponding observed data value. The expected value is then obtained by computing Ze = Idf.Normal(p, 0, 1). Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 22 of 28

23 Use the Compute Variables feature to obtain this. Open the Variable View of the data file and Label Zx as Observed Values and Ze as Expected Values. All that is needed to obtain the Q-Q normal probability plot has now been obtained. Any one of the (three) graphing features may now be used to obtain a scatter plot of the observed values against the expected values. The closeness to normality is then indicated by how closely the scatter plot approximates the line y = x. The two output columns are shown below. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 23 of 28

24 Now, to obtain the plot, open the Legacy Dialogs and select Scatter/Dot. Choose Simple Scatter and then assign Ze to the x-axis and Zx to the y-axis. You can add a Title and then select OK. The initial appearance of the Q-Q plot is Earlier editing methods can be used to obtain Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 24 of 28

25 For ease of comparison, the reference line y = x can be included as follows. Click on the button that produces the Add a reference line from Equation pop-up text box. A reference line will appear on the chart area and the Properties window will show the equation of the line in the Custom Equation box in the form Y = a * x + b For this Q-Q normal probability plot (using standardized values) make sure a = 1 and b = 0. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 25 of 28

26 The end result is Observe that the scatter plot follows the line y = x very closely, and all points are closely clustered randomly (no systematic patterns) about the line. This suggests that it is reasonable to assume that the underlying population of the random variable X is (at least approximately) normally distributed. See class handout for a detailed analysis and interpretation of Q-Q normal probability plots. Obtaining a Q-Q Normal Probability Plot using the Built-in SPSS Feature SPSS has a built in feature to construct Q-Q normal probability plots which shortens the process considerably Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 26 of 28

27 Select the toolbar commands shown below In the Q-Q Plots window assign the original variable to Variables, check the indicated boxes etc. and select OK. The resulting Q-Q normal probability plot is similar to the one obtained from scratch, with the exception that the Expected Values values are placed in the vertical axis rather than the horizontal axis, see below. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 27 of 28

28 Open the Chart Editor window and begin by transposing the graph. This is done by clicking on the button that yields a pop-up box containing the Transpose chart coordinate system Further edits can then be made to obtain a Q-Q normal probability plot that is very close in appearance to the earlier obtained plot. Prepared by: Chris Hay-Jahans, UAS Mathematics Program Page 28 of 28

6-1 THE STANDARD NORMAL DISTRIBUTION

6-1 THE STANDARD NORMAL DISTRIBUTION 6-1 THE STANDARD NORMAL DISTRIBUTION The major focus of this chapter is the concept of a normal probability distribution, but we begin with a uniform distribution so that we can see the following two very

More information

An introduction to plotting data

An introduction to plotting data An introduction to plotting data Eric D. Black California Institute of Technology February 25, 2014 1 Introduction Plotting data is one of the essential skills every scientist must have. We use it on a

More information

Introductory Applied Statistics: A Variable Approach TI Manual

Introductory Applied Statistics: A Variable Approach TI Manual Introductory Applied Statistics: A Variable Approach TI Manual John Gabrosek and Paul Stephenson Department of Statistics Grand Valley State University Allendale, MI USA Version 1.1 August 2014 2 Copyright

More information

The first few questions on this worksheet will deal with measures of central tendency. These data types tell us where the center of the data set lies.

The first few questions on this worksheet will deal with measures of central tendency. These data types tell us where the center of the data set lies. Instructions: You are given the following data below these instructions. Your client (Courtney) wants you to statistically analyze the data to help her reach conclusions about how well she is teaching.

More information

8. MINITAB COMMANDS WEEK-BY-WEEK

8. MINITAB COMMANDS WEEK-BY-WEEK 8. MINITAB COMMANDS WEEK-BY-WEEK In this section of the Study Guide, we give brief information about the Minitab commands that are needed to apply the statistical methods in each week s study. They are

More information

Unit 5: Estimating with Confidence

Unit 5: Estimating with Confidence Unit 5: Estimating with Confidence Section 8.3 The Practice of Statistics, 4 th edition For AP* STARNES, YATES, MOORE Unit 5 Estimating with Confidence 8.1 8.2 8.3 Confidence Intervals: The Basics Estimating

More information

Math 227 EXCEL / MEGASTAT Guide

Math 227 EXCEL / MEGASTAT Guide Math 227 EXCEL / MEGASTAT Guide Introduction Introduction: Ch2: Frequency Distributions and Graphs Construct Frequency Distributions and various types of graphs: Histograms, Polygons, Pie Charts, Stem-and-Leaf

More information

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Online Learning Centre Technology Step-by-Step - Minitab Minitab is a statistical software application originally created

More information

Microsoft Word for Report-Writing (2016 Version)

Microsoft Word for Report-Writing (2016 Version) Microsoft Word for Report-Writing (2016 Version) Microsoft Word is a versatile, widely-used tool for producing presentation-quality documents. Most students are well-acquainted with the program for generating

More information

Multivariate Normal Random Numbers

Multivariate Normal Random Numbers Multivariate Normal Random Numbers Revised: 10/11/2017 Summary... 1 Data Input... 3 Analysis Options... 4 Analysis Summary... 5 Matrix Plot... 6 Save Results... 8 Calculations... 9 Summary This procedure

More information

Meeting 1 Introduction to Functions. Part 1 Graphing Points on a Plane (REVIEW) Part 2 What is a function?

Meeting 1 Introduction to Functions. Part 1 Graphing Points on a Plane (REVIEW) Part 2 What is a function? Meeting 1 Introduction to Functions Part 1 Graphing Points on a Plane (REVIEW) A plane is a flat, two-dimensional surface. We describe particular locations, or points, on a plane relative to two number

More information

2.6: Rational Functions and Their Graphs

2.6: Rational Functions and Their Graphs 2.6: Rational Functions and Their Graphs Rational Functions are quotients of polynomial functions. The of a rational expression is all real numbers except those that cause the to equal. Example 1 (like

More information

Excel Tips and FAQs - MS 2010

Excel Tips and FAQs - MS 2010 BIOL 211D Excel Tips and FAQs - MS 2010 Remember to save frequently! Part I. Managing and Summarizing Data NOTE IN EXCEL 2010, THERE ARE A NUMBER OF WAYS TO DO THE CORRECT THING! FAQ1: How do I sort my

More information

Spreadsheet Warm Up for SSAC Geology of National Parks Modules, 2: Elementary Spreadsheet Manipulations and Graphing Tasks

Spreadsheet Warm Up for SSAC Geology of National Parks Modules, 2: Elementary Spreadsheet Manipulations and Graphing Tasks University of South Florida Scholar Commons Tampa Library Faculty and Staff Publications Tampa Library 2009 Spreadsheet Warm Up for SSAC Geology of National Parks Modules, 2: Elementary Spreadsheet Manipulations

More information

Chapter 6 Normal Probability Distributions

Chapter 6 Normal Probability Distributions Chapter 6 Normal Probability Distributions 6-1 Review and Preview 6-2 The Standard Normal Distribution 6-3 Applications of Normal Distributions 6-4 Sampling Distributions and Estimators 6-5 The Central

More information

CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-Nspire user guide

CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-Nspire user guide Year 11 TI-Nspire User guide Page 1 of 14 CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-Nspire user guide CONTENTS Introduction to the TI-Nspire 2 Using the Calculator application 4 Using the Graphs & Geometry

More information

Biostatistics & SAS programming. Kevin Zhang

Biostatistics & SAS programming. Kevin Zhang Biostatistics & SAS programming Kevin Zhang February 27, 2017 Random variables and distributions 1 Data analysis Simulation study Apply existing methodologies to your collected samples, with the hope to

More information

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data The following table shows the raw data which you need to fit to an appropriate equation k (s -1 ) T (K) 0.00043 312.5 0.00103 318.47 0.0018

More information

Chapter 3. Finding Sums. This chapter covers procedures for obtaining many of the summed values that are

Chapter 3. Finding Sums. This chapter covers procedures for obtaining many of the summed values that are 1 Chapter 3 Finding Sums This chapter covers procedures for obtaining many of the summed values that are commonly used in statistical calculations. These procedures will produce values that are identical

More information

Data Management Project Using Software to Carry Out Data Analysis Tasks

Data Management Project Using Software to Carry Out Data Analysis Tasks Data Management Project Using Software to Carry Out Data Analysis Tasks This activity involves two parts: Part A deals with finding values for: Mean, Median, Mode, Range, Standard Deviation, Max and Min

More information

Decision Support Risk handout. Simulating Spreadsheet models

Decision Support Risk handout. Simulating Spreadsheet models Decision Support Models @ Risk handout Simulating Spreadsheet models using @RISK 1. Step 1 1.1. Open Excel and @RISK enabling any macros if prompted 1.2. There are four on line help options available.

More information

CHAPTER 6. The Normal Probability Distribution

CHAPTER 6. The Normal Probability Distribution The Normal Probability Distribution CHAPTER 6 The normal probability distribution is the most widely used distribution in statistics as many statistical procedures are built around it. The central limit

More information

R Programming Basics - Useful Builtin Functions for Statistics

R Programming Basics - Useful Builtin Functions for Statistics R Programming Basics - Useful Builtin Functions for Statistics Vectorized Arithmetic - most arthimetic operations in R work on vectors. Here are a few commonly used summary statistics. testvect = c(1,3,5,2,9,10,7,8,6)

More information

a. divided by the. 1) Always round!! a) Even if class width comes out to a, go up one.

a. divided by the. 1) Always round!! a) Even if class width comes out to a, go up one. Probability and Statistics Chapter 2 Notes I Section 2-1 A Steps to Constructing Frequency Distributions 1 Determine number of (may be given to you) a Should be between and classes 2 Find the Range a The

More information

Practical 2: Using Minitab (not assessed, for practice only!)

Practical 2: Using Minitab (not assessed, for practice only!) Practical 2: Using Minitab (not assessed, for practice only!) Instructions 1. Read through the instructions below for Accessing Minitab. 2. Work through all of the exercises on this handout. If you need

More information

Spreadsheet View and Basic Statistics Concepts

Spreadsheet View and Basic Statistics Concepts Spreadsheet View and Basic Statistics Concepts GeoGebra 3.2 Workshop Handout 9 Judith and Markus Hohenwarter www.geogebra.org Table of Contents 1. Introduction to GeoGebra s Spreadsheet View 2 2. Record

More information

Microsoft Excel Using Excel in the Science Classroom

Microsoft Excel Using Excel in the Science Classroom Microsoft Excel Using Excel in the Science Classroom OBJECTIVE Students will take data and use an Excel spreadsheet to manipulate the information. This will include creating graphs, manipulating data,

More information

Chapter 6. The Normal Distribution. McGraw-Hill, Bluman, 7 th ed., Chapter 6 1

Chapter 6. The Normal Distribution. McGraw-Hill, Bluman, 7 th ed., Chapter 6 1 Chapter 6 The Normal Distribution McGraw-Hill, Bluman, 7 th ed., Chapter 6 1 Bluman, Chapter 6 2 Chapter 6 Overview Introduction 6-1 Normal Distributions 6-2 Applications of the Normal Distribution 6-3

More information

How to Make Graphs in EXCEL

How to Make Graphs in EXCEL How to Make Graphs in EXCEL The following instructions are how you can make the graphs that you need to have in your project.the graphs in the project cannot be hand-written, but you do not have to use

More information

FUNCTIONS AND MODELS

FUNCTIONS AND MODELS 1 FUNCTIONS AND MODELS FUNCTIONS AND MODELS 1.5 Exponential Functions In this section, we will learn about: Exponential functions and their applications. EXPONENTIAL FUNCTIONS The function f(x) = 2 x is

More information

Data Analysis & Probability

Data Analysis & Probability Unit 5 Probability Distributions Name: Date: Hour: Section 7.2: The Standard Normal Distribution (Area under the curve) Notes By the end of this lesson, you will be able to Find the area under the standard

More information

Section Graphs and Lines

Section Graphs and Lines Section 1.1 - Graphs and Lines The first chapter of this text is a review of College Algebra skills that you will need as you move through the course. This is a review, so you should have some familiarity

More information

The Normal Distribution

The Normal Distribution Chapter 6 The Normal Distribution Continuous random variables are used to approximate probabilities where there are many possibilities or an infinite number of possibilities on a given trial. One of the

More information

INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING

INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING APPENDIX INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING (Developed by Dr. Dale Vogelien, Kennesaw State University) ** For a good review of basic

More information

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 6.2-1

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 6.2-1 Lecture Slides Elementary Statistics Twelfth Edition and the Triola Statistics Series by Mario F. Triola Section 6.2-1 Chapter 6 Normal Probability Distributions 6-1 Review and Preview 6-2 The Standard

More information

Learning Objectives. Continuous Random Variables & The Normal Probability Distribution. Continuous Random Variable

Learning Objectives. Continuous Random Variables & The Normal Probability Distribution. Continuous Random Variable Learning Objectives Continuous Random Variables & The Normal Probability Distribution 1. Understand characteristics about continuous random variables and probability distributions 2. Understand the uniform

More information

Please consider the environment before printing this tutorial. Printing is usually a waste.

Please consider the environment before printing this tutorial. Printing is usually a waste. Ortiz 1 ESCI 1101 Excel Tutorial Fall 2011 Please consider the environment before printing this tutorial. Printing is usually a waste. Many times when doing research, the graphical representation of analyzed

More information

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Contents 1 Introduction to Using Excel Spreadsheets 2 1.1 A Serious Note About Data Security.................................... 2 1.2

More information

CREATING SIMULATED DATASETS Edition by G. David Garson and Statistical Associates Publishing Page 1

CREATING SIMULATED DATASETS Edition by G. David Garson and Statistical Associates Publishing Page 1 Copyright @c 2012 by G. David Garson and Statistical Associates Publishing Page 1 @c 2012 by G. David Garson and Statistical Associates Publishing. All rights reserved worldwide in all media. No permission

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

Learner Expectations UNIT 1: GRAPICAL AND NUMERIC REPRESENTATIONS OF DATA. Sept. Fathom Lab: Distributions and Best Methods of Display

Learner Expectations UNIT 1: GRAPICAL AND NUMERIC REPRESENTATIONS OF DATA. Sept. Fathom Lab: Distributions and Best Methods of Display CURRICULUM MAP TEMPLATE Priority Standards = Approximately 70% Supporting Standards = Approximately 20% Additional Standards = Approximately 10% HONORS PROBABILITY AND STATISTICS Essential Questions &

More information

4.3 The Normal Distribution

4.3 The Normal Distribution 4.3 The Normal Distribution Objectives. Definition of normal distribution. Standard normal distribution. Specialties of the graph of the standard normal distribution. Percentiles of the standard normal

More information

The Normal Distribution & z-scores

The Normal Distribution & z-scores & z-scores Distributions: Who needs them? Why are we interested in distributions? Important link between distributions and probabilities of events If we know the distribution of a set of events, then we

More information

Physics 251 Laboratory Introduction to Spreadsheets

Physics 251 Laboratory Introduction to Spreadsheets Physics 251 Laboratory Introduction to Spreadsheets Pre-Lab: Please do the lab-prep exercises on the web. Introduction Spreadsheets have a wide variety of uses in both the business and academic worlds.

More information

BIOL Gradation of a histogram (a) into the normal curve (b)

BIOL Gradation of a histogram (a) into the normal curve (b) (التوزيع الطبيعي ( Distribution Normal (Gaussian) One of the most important distributions in statistics is a continuous distribution called the normal distribution or Gaussian distribution. Consider the

More information

Probability Models.S4 Simulating Random Variables

Probability Models.S4 Simulating Random Variables Operations Research Models and Methods Paul A. Jensen and Jonathan F. Bard Probability Models.S4 Simulating Random Variables In the fashion of the last several sections, we will often create probability

More information

Dealing with Categorical Data Types in a Designed Experiment

Dealing with Categorical Data Types in a Designed Experiment Dealing with Categorical Data Types in a Designed Experiment Part II: Sizing a Designed Experiment When Using a Binary Response Best Practice Authored by: Francisco Ortiz, PhD STAT T&E COE The goal of

More information

Data Analysis Guidelines

Data Analysis Guidelines Data Analysis Guidelines DESCRIPTIVE STATISTICS Standard Deviation Standard deviation is a calculated value that describes the variation (or spread) of values in a data set. It is calculated using a formula

More information

An introduction to SPSS

An introduction to SPSS An introduction to SPSS To open the SPSS software using U of Iowa Virtual Desktop... Go to https://virtualdesktop.uiowa.edu and choose SPSS 24. Contents NOTE: Save data files in a drive that is accessible

More information

Multivariate probability distributions

Multivariate probability distributions Multivariate probability distributions September, 07 STAT 0 Class Slide Outline of Topics Background Discrete bivariate distribution 3 Continuous bivariate distribution STAT 0 Class Slide Multivariate

More information

INTRODUCTION TO SPSS OUTLINE 6/17/2013. Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN Phone:

INTRODUCTION TO SPSS OUTLINE 6/17/2013. Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN Phone: INTRODUCTION TO SPSS Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN-0-024 Phone: 89287269 E-mail: mujibur@uniten.edu.my OUTLINE About the four-windows in SPSS The basics of managing data files The basic

More information

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975.

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. SPSS Statistics were designed INTRODUCTION TO SPSS Objective About the

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center September 9, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the

More information

Lab 5 - Risk Analysis, Robustness, and Power

Lab 5 - Risk Analysis, Robustness, and Power Type equation here.biology 458 Biometry Lab 5 - Risk Analysis, Robustness, and Power I. Risk Analysis The process of statistical hypothesis testing involves estimating the probability of making errors

More information

Using Large Data Sets Workbook Version A (MEI)

Using Large Data Sets Workbook Version A (MEI) Using Large Data Sets Workbook Version A (MEI) 1 Index Key Skills Page 3 Becoming familiar with the dataset Page 3 Sorting and filtering the dataset Page 4 Producing a table of summary statistics with

More information

The Normal Distribution & z-scores

The Normal Distribution & z-scores & z-scores Distributions: Who needs them? Why are we interested in distributions? Important link between distributions and probabilities of events If we know the distribution of a set of events, then we

More information

Guide to Statistical Software

Guide to Statistical Software Guide to Statistical Software APPENDIX B Chapter 3 Displaying and Describing Categorical Data To make a bar chart or pie chart, select the variable In the Plot menu, choose Bar Chart or Pie Chart To make

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

More information

Foundation. Scheme of Work. Year 9. September 2016 to July 2017

Foundation. Scheme of Work. Year 9. September 2016 to July 2017 Foundation Scheme of Work Year 9 September 06 to July 07 Assessments Students will be assessed by completing two tests (topic) each Half Term. These are to be recorded on Go Schools. There will not be

More information

GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE

GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE Six Sigma Quality Concepts & Cases Volume I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS CHAPTER 2 GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE Amar

More information

Unit WorkBook 2 Level 4 ENG U2 Engineering Maths LO2 Statistical Techniques 2018 UniCourse Ltd. All Rights Reserved. Sample

Unit WorkBook 2 Level 4 ENG U2 Engineering Maths LO2 Statistical Techniques 2018 UniCourse Ltd. All Rights Reserved. Sample Pearson BTEC Levels 4 and 5 Higher Nationals in Engineering (RQF) Unit 2: Engineering Maths (core) Unit Workbook 2 in a series of 4 for this unit Learning Outcome 2 Statistical Techniques Page 1 of 37

More information

Scaling Factors for Process Behavior Charts

Scaling Factors for Process Behavior Charts Quality Digest Daily, Mar. 1, 2010 Manuscript No. 207 Scaling Factors for Process Behavior Charts A Quick Reference Guide In the 1940s the War Production Board trained approximately 50,000 individuals

More information

FSA Algebra 1 EOC Practice Test Guide

FSA Algebra 1 EOC Practice Test Guide FSA Algebra 1 EOC Practice Test Guide This guide serves as a walkthrough of the Florida Standards Assessments (FSA) Algebra 1 End-of- Course (EOC) practice test. By reviewing the steps listed below, you

More information

Using Excel for Graphical Analysis of Data

Using Excel for Graphical Analysis of Data Using Excel for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters. Graphs are

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

More information

Chapter Two: Descriptive Methods 1/50

Chapter Two: Descriptive Methods 1/50 Chapter Two: Descriptive Methods 1/50 2.1 Introduction 2/50 2.1 Introduction We previously said that descriptive statistics is made up of various techniques used to summarize the information contained

More information

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings Statistical Good Practice Guidelines SSC home Using Excel for Statistics - Tips and Warnings On-line version 2 - March 2001 This is one in a series of guides for research and support staff involved in

More information

Unit 8 SUPPLEMENT Normal, T, Chi Square, F, and Sums of Normals

Unit 8 SUPPLEMENT Normal, T, Chi Square, F, and Sums of Normals BIOSTATS 540 Fall 017 8. SUPPLEMENT Normal, T, Chi Square, F and Sums of Normals Page 1 of Unit 8 SUPPLEMENT Normal, T, Chi Square, F, and Sums of Normals Topic 1. Normal Distribution.. a. Definition..

More information

Excel 2010 with XLSTAT

Excel 2010 with XLSTAT Excel 2010 with XLSTAT J E N N I F E R LE W I S PR I E S T L E Y, PH.D. Introduction to Excel 2010 with XLSTAT The layout for Excel 2010 is slightly different from the layout for Excel 2007. However, with

More information

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview Chapter 888 Introduction This procedure generates D-optimal designs for multi-factor experiments with both quantitative and qualitative factors. The factors can have a mixed number of levels. For example,

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SPSS SPSS (originally Statistical Package for the Social Sciences ) is a commercial statistical software package with an easy-to-use

More information

AQA GCSE Maths - Higher Self-Assessment Checklist

AQA GCSE Maths - Higher Self-Assessment Checklist AQA GCSE Maths - Higher Self-Assessment Checklist Number 1 Use place value when calculating with decimals. 1 Order positive and negative integers and decimals using the symbols =,, , and. 1 Round to

More information

HPOG RoundTable: How to Manipulate PAGES Data with Excel

HPOG RoundTable: How to Manipulate PAGES Data with Excel HPOG RoundTable: How to Manipulate PAGES Data with Excel This document describes how to create a basic table shell, populate it, and generate a chart in Excel 2016. Other versions of Excel will have corresponding

More information

Chapter 2 Modeling Distributions of Data

Chapter 2 Modeling Distributions of Data Chapter 2 Modeling Distributions of Data Section 2.1 Describing Location in a Distribution Describing Location in a Distribution Learning Objectives After this section, you should be able to: FIND and

More information

Mathematics Year 9-11 Skills and Knowledge Checklist. Name: Class: Set : Premier Date Year 9 MEG :

Mathematics Year 9-11 Skills and Knowledge Checklist. Name: Class: Set : Premier Date Year 9 MEG : Personal targets to help me achieve my grade : AFL Sheet Number 1 : Standard Form, Decimals, Fractions and Percentages Standard Form I can write a number as a product of it s prime factors I can use the

More information

SPSS QM II. SPSS Manual Quantitative methods II (7.5hp) SHORT INSTRUCTIONS BE CAREFUL

SPSS QM II. SPSS Manual Quantitative methods II (7.5hp) SHORT INSTRUCTIONS BE CAREFUL SPSS QM II SHORT INSTRUCTIONS This presentation contains only relatively short instructions on how to perform some statistical analyses in SPSS. Details around a certain function/analysis method not covered

More information

Stat 528 (Autumn 2008) Density Curves and the Normal Distribution. Measures of center and spread. Features of the normal distribution

Stat 528 (Autumn 2008) Density Curves and the Normal Distribution. Measures of center and spread. Features of the normal distribution Stat 528 (Autumn 2008) Density Curves and the Normal Distribution Reading: Section 1.3 Density curves An example: GRE scores Measures of center and spread The normal distribution Features of the normal

More information

MAT 102 Introduction to Statistics Chapter 6. Chapter 6 Continuous Probability Distributions and the Normal Distribution

MAT 102 Introduction to Statistics Chapter 6. Chapter 6 Continuous Probability Distributions and the Normal Distribution MAT 102 Introduction to Statistics Chapter 6 Chapter 6 Continuous Probability Distributions and the Normal Distribution 6.2 Continuous Probability Distributions Characteristics of a Continuous Probability

More information

7 Fractions. Number Sense and Numeration Measurement Geometry and Spatial Sense Patterning and Algebra Data Management and Probability

7 Fractions. Number Sense and Numeration Measurement Geometry and Spatial Sense Patterning and Algebra Data Management and Probability 7 Fractions GRADE 7 FRACTIONS continue to develop proficiency by using fractions in mental strategies and in selecting and justifying use; develop proficiency in adding and subtracting simple fractions;

More information

Introduction to creating and working with graphs

Introduction to creating and working with graphs Introduction to creating and working with graphs In the introduction discussed in week one, we used EXCEL to create a T chart of values for a function. Today, we are going to begin by recreating the T

More information

= 3 + (5*4) + (1/2)*(4/2)^2.

= 3 + (5*4) + (1/2)*(4/2)^2. Physics 100 Lab 1: Use of a Spreadsheet to Analyze Data by Kenneth Hahn and Michael Goggin In this lab you will learn how to enter data into a spreadsheet and to manipulate the data in meaningful ways.

More information

To calculate the arithmetic mean, sum all the values and divide by n (equivalently, multiple 1/n): 1 n. = 29 years.

To calculate the arithmetic mean, sum all the values and divide by n (equivalently, multiple 1/n): 1 n. = 29 years. 3: Summary Statistics Notation Consider these 10 ages (in years): 1 4 5 11 30 50 8 7 4 5 The symbol n represents the sample size (n = 10). The capital letter X denotes the variable. x i represents the

More information

Generating random samples from user-defined distributions

Generating random samples from user-defined distributions The Stata Journal (2011) 11, Number 2, pp. 299 304 Generating random samples from user-defined distributions Katarína Lukácsy Central European University Budapest, Hungary lukacsy katarina@phd.ceu.hu Abstract.

More information

KaleidaGraph Quick Start Guide

KaleidaGraph Quick Start Guide KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.

More information

The Power and Sample Size Application

The Power and Sample Size Application Chapter 72 The Power and Sample Size Application Contents Overview: PSS Application.................................. 6148 SAS Power and Sample Size............................... 6148 Getting Started:

More information

Decimals should be spoken digit by digit eg 0.34 is Zero (or nought) point three four (NOT thirty four).

Decimals should be spoken digit by digit eg 0.34 is Zero (or nought) point three four (NOT thirty four). Numeracy Essentials Section 1 Number Skills Reading and writing numbers All numbers should be written correctly. Most pupils are able to read, write and say numbers up to a thousand, but often have difficulty

More information

Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet

Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet The Main Menu Bar is located immediately below the Program

More information

Voluntary State Curriculum Algebra II

Voluntary State Curriculum Algebra II Algebra II Goal 1: Integration into Broader Knowledge The student will develop, analyze, communicate, and apply models to real-world situations using the language of mathematics and appropriate technology.

More information

Cecil Jones Academy Mathematics Fundamentals

Cecil Jones Academy Mathematics Fundamentals Year 10 Fundamentals Core Knowledge Unit 1 Unit 2 Estimate with powers and roots Calculate with powers and roots Explore the impact of rounding Investigate similar triangles Explore trigonometry in right-angled

More information

Excel Spreadsheets and Graphs

Excel Spreadsheets and Graphs Excel Spreadsheets and Graphs Spreadsheets are useful for making tables and graphs and for doing repeated calculations on a set of data. A blank spreadsheet consists of a number of cells (just blank spaces

More information

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word These instructions assume that you are familiar with using MS Word for ordinary word processing *. If you are not comfortable entering

More information

What s New in Oracle Crystal Ball? What s New in Version Browse to:

What s New in Oracle Crystal Ball? What s New in Version Browse to: What s New in Oracle Crystal Ball? Browse to: - What s new in version 11.1.1.0.00 - What s new in version 7.3 - What s new in version 7.2 - What s new in version 7.1 - What s new in version 7.0 - What

More information

Experiment 1 CH Fall 2004 INTRODUCTION TO SPREADSHEETS

Experiment 1 CH Fall 2004 INTRODUCTION TO SPREADSHEETS Experiment 1 CH 222 - Fall 2004 INTRODUCTION TO SPREADSHEETS Introduction Spreadsheets are valuable tools utilized in a variety of fields. They can be used for tasks as simple as adding or subtracting

More information

FSA Algebra 1 EOC Practice Test Guide

FSA Algebra 1 EOC Practice Test Guide FSA Algebra 1 EOC Practice Test Guide This guide serves as a walkthrough of the Algebra 1 EOC practice test. By reviewing the steps listed below, you will have a better understanding of the test functionalities,

More information

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key Getting started with Ms Access 2007 Getting Started Customize Microsoft Office Toolbar The Ribbon Quick Access Toolbar Navigation Tabbed Document Window Viewing Primary Key Composite Key Foreign Key Table

More information

Excel For Algebra. Conversion Notes: Excel 2007 vs Excel 2003

Excel For Algebra. Conversion Notes: Excel 2007 vs Excel 2003 Excel For Algebra Conversion Notes: Excel 2007 vs Excel 2003 If you re used to Excel 2003, you re likely to have some trouble switching over to Excel 2007. That s because Microsoft completely reworked

More information

Unit 7 Statistics. AFM Mrs. Valentine. 7.1 Samples and Surveys

Unit 7 Statistics. AFM Mrs. Valentine. 7.1 Samples and Surveys Unit 7 Statistics AFM Mrs. Valentine 7.1 Samples and Surveys v Obj.: I will understand the different methods of sampling and studying data. I will be able to determine the type used in an example, and

More information

Alaska Mathematics Standards Vocabulary Word List Grade 7

Alaska Mathematics Standards Vocabulary Word List Grade 7 1 estimate proportion proportional relationship rate ratio rational coefficient rational number scale Ratios and Proportional Relationships To find a number close to an exact amount; an estimate tells

More information

Grade 8 FSA Mathematics Practice Test Guide

Grade 8 FSA Mathematics Practice Test Guide Grade 8 FSA Mathematics Practice Test Guide This guide serves as a walkthrough of the Grade 8 Florida Standards Assessments (FSA) Mathematics practice test. By reviewing the steps listed below, you will

More information

x 2 + 3, r 4(x) = x2 1

x 2 + 3, r 4(x) = x2 1 Math 121 (Lesieutre); 4.2: Rational functions; September 1, 2017 1. What is a rational function? It s a function of the form p(x), where p(x) and q(x) are both polynomials. In other words, q(x) something

More information