Exam 1 Study Guide

General

The exam will be open book, open notes, and open computer. You may use any resources except, of course, asking another person for help (in person or online). You do not need to memorize any formulas.

The emphasis will be on practical applications. There will not be any in-depth theory questions, but you should know how to apply major theoretical concepts such as how to compute the probability of the union of two non-disjoint events (Example 2.14) or conditional probabilities (Example 2.25).

Chapter 2

2.1 Sample Spaces and Events

You should be familiar with the following definitions:

You should understand the law of large numbers which states that if a certain event A occurrs with probability p when we perform an experiment, then if we perform the experiment many times, the proportion of those experiments in which event A occurs approaches p.

For example, the probability of rolling 12 with a pair of balanced dice is 1/36 or 0.0278. If we roll the dice a million times, we expect the proportion of twelves in those 1,000,000 outcomes to be close to 0.0278, that is, we expect about 27,778 twelves.

2.2 Probability (abstract definitions)

You should be familiar with the following definitions, axioms, and theorems:

You should be able to use the properties of probability relating to compliments and unions on pages 54 and 55.

2.3 Counting Tecniques

You should be familiar with the following definitions:

You should be able to use a spreadsheet to compute permutations and combinations, understand the difference between them and be able to determine which one to use in a specific problem

You should be able to apply the product rules for ordered pairs and k-tuples (Examples 2.17 and 2.19)

QuantityAuthor's NotationDesctiptionSpreadsheet
PermutationsPk,nNumber of subsets of size k taken from a set of n objects (order matters)=PERMUT(k,n)
CombinationsCk,nNumber of subsets of size k taken from a set of n objects (order does not matter)=COMBIN(k,n)

2.4 Conditional Probability

You should be able to apply the definition of conditional probability (Example 2.25), the law of total probability, and Baye's Theorem (Example 2.30).

You should be able to construct a tree diagram and use it to solve a problem (Similar to Examples 2.29 and 2.30 in the text and the ones in written assignment 1)

2.5 Independence

Chapter 1

Measures of Location

You should be familiar with the following definitions, and able to use a spreadsheet to compute them for a given set of data values (the examples assume the relevant data values are in cells A1:A10 of a spreadsheet, or in an array called x in R)

MeasureSpreadsheetR
mean=AVERAGE(A1:A10)mean(x)
median=MEDIAN(A1:A10)median(x)
quartiles=QUARTILE(A1:A10,n)quantiles(x)

You should know which measures are sensitive to outliers.

Measures of Variability

You should be familiar with the following definitions, and able to use a spreadsheet to compute them for a given set of data values:

MeasureSpreadsheetR
variance=VAR(A1:A10)var(x)
standard deviation=STD(A1:A10)sd(x)
range=MAX(A1:A10)-MIN(A1:A10)range(x)
interquartile range=QUARTILE(A1:A10,3)-QUARTILE(A1:A10,1)IQR(x)

You should know which measures are sensitive to outliers.

Chapter 3

3.1 Random Variables

You should understand the abstract definition of a random variable as a rule or function that associates a number with each outcome in a sample space.

You should be familiar with the definition of a Bernoulli random variable.

3.2 Discrete Random Variables

You should understand the meaning of following terms:

3.3 Expected values

You should understand the meaning of following terms:

3.4 The Binomial distribution

You should:

ProbabilityDefinitionSpreadsheetR
The probability that a binomial random variable takes a specified valuepmf: P(X=x)=BINOMDIST(x,n,p,FALSE)dbinom(x,n,p)
The probability that a binomial random variable takes a value less than or equal to a specific valueCDF: P(X<=x)=BINOMDIST(x,n,p,TRUE)pbinom(x,n,p)
The probability that a binomial random variable takes a value less than a specific valueP(X<x)=BINOMDIST(x-1,n,p,TRUE)pbinom(x-1,n,p)
The probability that a binomial random variable takes a value greater than a specific valueP(X>x)=1-BINOMDIST(x,n,p,TRUE)1-pbinom(x,n,p)
The probability that a binomial random variable takes a value greater than or equal to a specific valueP(X>=x)=1-BINOMDIST(x-1,n,p,TRUE)1-pbinom(x-1,n,p)

3.5 The Geometric distribution

You should:

ProbabilityDefinitionSpreadsheetR
The probability that a geometric random variable takes a specified valuepmf: P(X=x) dgeom(x,p)
The probability that a geometric random variable takes a value less than or equal to a specific valueCDF: P(X<=x) pgeom(x,p)
The probability that a geometric random variable takes a value less than a specific valueP(X<x) pgeom(x-1,p)
The probability that a geometric random variable takes a value greater than a specific valueP(X>x) 1-pgeom(x,p)
The probability that a geometric random variable takes a value greater than or equal to a specific valueP(X>=x) 1-pgeom(x-1,p)

3.5 The Negative Binomial distribution

You should:

ProbabilityDefinitionSpreadsheetR
The probability that a negative binomial random variable takes a specified valuepmf: P(X=x)=NEGBINOMDIST(x,r,p)dnbinom(x,r,p)
The probability that a negative binomial random variable takes a value less than or equal to a specific valueCDF: P(X<=x) pnbinom(x,r,p)
The probability that a negative binomial random variable takes a value less than a specific valueP(X<x) pnbinom(x-1,r,p)
The probability that a negative binomial random variable takes a value greater than a specific valueP(X>x) 1-pnbinom(x,r,p)
The probability that a negative binomial random variable takes a value greater than or equal to a specific valueP(X>=x) 1-pnbinom(x-1,r,p)

3.6 The Poisson distribution

You should:

ProbabilityDefinitionSpreadsheetR
The probability that a Poisson random variable takes a specified valuepmf: P(X=x)=POISSON(x,lambda,FALSE)dpois(x,lambda)
The probability that a Poisson random variable takes a value less than or equal to a specific valueCDF: P(X<=x)=POISSON(x,lambda,TRUE)ppois(x,lambda)
The probability that a Poisson random variable takes a value less than a specific valueP(X<x)=POISSON(x-1,lambda,TRUE)ppois(x-1,lambda)
The probability that a Poisson random variable takes a value greater than a specific valueP(X>x)=1-POISSON(x,lambda,TRUE)1-ppois(x,lambda)
The probability that a Poisson random variable takes a value greater than or equal to a specific valueP(X>=x)=1-POISSON(x-1,lambda,TRUE)1-ppois(x-1,lambda)