Study course material including lecture notes and homework assignments before attempting the practice exam.
Pay special attention to the listed tasks to prepare.
Use the practice test to identify areas of strength and weakness.
Traditional multiple-choice, pen(cil)-and-paper exam.
Indicate your letter answer on the blank on the cover page.
No Scantron forms or personal paper allowed; scratch paper will be provided.
Date: Wednesday, March 5
Time: 2:00 PM to 2:50 PM
Time limit: 50 minutes
Conducted online via MyLab Statistics, using RStudio.
Open Book: You can refer to notes.
Time Limit: 60 minutes, single attempt only.
Available from Wednesday, March 5 at 3 PM to Thursday, March 6 at 11 PM.
Required to carry and show Student ID card upon request.
No books, notes, or electronic devices allowed during the exam.
A scientific calculator is required; cellphone calculators are not permitted.
Relative frequency interpretation of probability.
Calculate probabilities for equally likely outcomes.
Calculate conditional probability P(A|B) with sufficient information about A and B.
Use the multiplication rule to find P(A and B) when P(A|B) and P(B) are given.
Calculate event probability using Bayes' Rule.
Probability of a sequence of independent events.
Express events using random variables and vice versa.
Calculate and interpret mean, variance, and standard deviation of discrete random variables.
Determine if a random variable's distribution is binomial.
Find expected value and variance of linear combinations of random variables.
Calculate standard deviation from variance.
Event probabilities with discrete random variable distributions from tables.
Event probabilities for continuous random variable distributions with linear density functions.
Characteristics of a known Normal Distribution.
Use empirical rule (68-95-99.7 rule) to find proportions relative to mean.
Find and interpret z-scores as measures of relative standing.
Import data from a file or via code chunks.
Create contingency tables to calculate probabilities.
Calculate binomial probabilities using pbinom()
and dbinom()
functions.
Verify approximate Normal Distributions with hist()
and qqnorm()
.
Calculate Normal Distribution probabilities with pnorm()
.
Find percentiles and z-values using qnorm()
.
For discrete random variable X:
Mean: µ = E(X) = Σ [x * p(x)]
Variance: σ² = Var(X) = Σ [(x - µ)² * p(x)]
If X ∼ Bin(n, p):
Mean: µ = E(X) = np
Variance: σ² = np(1 - p)
Standard deviation: σ = √(np(1 - p))
For any two events A and B:
Union: P(A or B) = P(A) + P(B) - P(A and B)
Complement: P(A) = 1 - P(Aᶜ)
Conditional Probability: P(A|B) = P(A and B) / P(B)
General Multiplication Rule: P(A and B) = P(A|B)P(B) = P(B|A)P(A)
Independent Events: Events A and B are independent if P(A and B) = P(A)P(B).
Expected Value of Linear Combinations:
E(aX + b) = aE(X) + b
E(aX + bY) = aE(X) + bE(Y)
V(aX + b) = a²Var(X)
V(aX + bY) = a²Var(X) + b²Var(Y)
68% of data within 1 standard deviation of the mean.
95% within 2 standard deviations.
99.7% within 3 standard deviations.
Draw tree diagram with given probabilities.
Fill in missing probabilities using complementary event rules.
Write conditional probability needed and evaluate using the tree diagram.