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).
You should be familiar with the following definitions:
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.
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.
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)
Quantity | Author's Notation | Desctiption | Spreadsheet |
Permutations | Pk,n | Number of subsets of size k taken from a set of n objects (order matters) | =PERMUT(k,n) |
Combinations | Ck,n | Number of subsets of size k taken from a set of n objects (order does not matter) | =COMBIN(k,n) |
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)
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)
Measure | Spreadsheet | R |
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.
You should be familiar with the following definitions, and able to use a spreadsheet to compute them for a given set of data values:
Measure | Spreadsheet | R |
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.
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.
You should understand the meaning of following terms:
You should understand the meaning of following terms:
You should:
Probability | Definition | Spreadsheet | R |
The probability that a binomial random variable takes a specified value | pmf: 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 value | CDF: 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 value | P(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 value | P(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 value | P(X>=x) | =1-BINOMDIST(x-1,n,p,TRUE) | 1-pbinom(x-1,n,p) |
You should:
Probability | Definition | Spreadsheet | R |
The probability that a geometric random variable takes a specified value | pmf: P(X=x) | dgeom(x,p) | |
The probability that a geometric random variable takes a value less than or equal to a specific value | CDF: P(X<=x) | pgeom(x,p) | |
The probability that a geometric random variable takes a value less than a specific value | P(X<x) | pgeom(x-1,p) | |
The probability that a geometric random variable takes a value greater than a specific value | P(X>x) | 1-pgeom(x,p) | |
The probability that a geometric random variable takes a value greater than or equal to a specific value | P(X>=x) | 1-pgeom(x-1,p) |
You should:
Probability | Definition | Spreadsheet | R |
The probability that a negative binomial random variable takes a specified value | pmf: 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 value | CDF: P(X<=x) | pnbinom(x,r,p) | |
The probability that a negative binomial random variable takes a value less than a specific value | P(X<x) | pnbinom(x-1,r,p) | |
The probability that a negative binomial random variable takes a value greater than a specific value | P(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 value | P(X>=x) | 1-pnbinom(x-1,r,p) |
You should:
Probability | Definition | Spreadsheet | R |
The probability that a Poisson random variable takes a specified value | pmf: 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 value | CDF: P(X<=x) | =POISSON(x,lambda,TRUE) | ppois(x,lambda) |
The probability that a Poisson random variable takes a value less than a specific value | P(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 value | P(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 value | P(X>=x) | =1-POISSON(x-1,lambda,TRUE) | 1-ppois(x-1,lambda) |