A variable that can only take on a countable number of distinct values
What is a discrete random variable?
When adding a constant to a random variable do the mean and standard deviation change?
Only the mean
The difference between binomial and geometric settings
fixed number of trials versus counting trials until the success
What is a probability distribution?
X = $ amount of each size soda (random variable)
meanx = 1.8
sdx = .7
Find the new mean and sd if the store increases their prices of soda by $1 each
2.8, .7
You take a 30 question multiple choice test (choices A-D for each question), and unfortunately know nothing on it. If you were to guess on every question, what is the probability that you get 5 questions correct?
binomialpdf(30,.25,5)
.1047
Calculates the probability of the Yth trial being the first successful trial in a geometric setting.
What is geometpdf?
Let A and B be random variables
meanA = 6.4
meanB = 8.9
Find meanA+B
15.3
Tim makes 80% of his free throws. In a game, he takes 14 free throw attempts. Find the mean and standard deviation of the distribution
mean = (.8)(14)
SD = sqrt(14x.8x.2)
The three parameters needed to define a binomial distribution
What is number of trials, probability of success, and number of successes?
X and Y are Random Variables
sdx = 8
sdy = 7
Find sdx-y
sqrt(113) = 10.63
You take a 30 question multiple choice test (choices A-D for each question), and unfortunately know nothing on it. If you were to guess on every question, what is the probability that you get 5 or more questions correct?
1-binomialpdf(30,.25,4) = .93958
Description of the conditions for a binomial setting and geometric setting.
What is BINS (Binary - outcomes are success or failure, Independent - trials are independent, Number - fixed number of trials, Success - probability of success is the same on each trial)
What is BITS (same, same, Trials - count trials up to and including the first success, same)
Let U and V be random variables that are approximately normally distributed.
meanu = 500, sdu = 15
meanv = 200, sdv = 8
Let T = U + V, find P(T > 717)
.16
A wide receiver has a catch rate of 40%. What is the probability that his first catch will be before his 3rd target?
geometriccdf(.4,2)