Midterm 2 Flashcards
Define Probability
The “chance” of an event occurring when the experiment is conducted
Explain what the P(A) notation means in the context of probability.
P(A) = the chance that event A occurring.
Define the terms “event” and “outcome” in probability.
An event is a collection of one or more outcomes of an experiment.
What are mutually exclusive events? Provide an example.
events that cannot occur simultaneously. Flipping a coin and getting both heads and tails.
How do you calculate the standard deviation? There are 5 steps.
- Calculate the Mean
- Subtract the Mean from each of the values
- Square the Results
- Add up all results and divide by amount of results
- Take the Square Root
What is a continuous random variable? What’s an example?
A continuous random variable is has potentially equal an uncountably infinite amount of different values. Examples of this are time and height. These values are decimals or fractions as they have infinite values.
What is a discrete random variable? What’s an example?
A discrete random variable is defined in such a way that it can only possible equal a finite or countable amount of different values. Examples of this is the amount of heads flipped in an experiment when flipping coins.
What is a random variable?
These variables also represent quantities or numerical values, but the difference is that the quantity it represent depends on
the outcome of an experiment.
Differentiate between discrete and continuous random variables.
Discrete values must be integers but continuous values can be decimals and fractions.
How do you calculate mean? (expected value)
There are two steps.
1) Multiply each value by its probability
2) Sum the products
This can be done easily using the =sumproduct function in Excel
COLUMN X COLUMN, NOT ROW BY ROW!
Explain what a probability distribution is
A probability distribution lists all of the values a random variable can equal next to their probabilities
Define Binomial Probability
A binomial probability question is a probability question of the general form “What is the probability something happens a certain number of times during a multi-step experiment?”
What is the formula for calculating binomial probabilities?
=binom.dist(number_s, trials, probability_s, cumulative)
Where is the number_s fit into the binom.dist function and what does number_s mean? What letter is it denoted as in the alternative equation?
This calculates the number of successes you want to happen. This is the letter x
Where does the trials fit into the binom.dist function and what does trials mean? What letter is it denoted as in the alternative equation?
amount of trials ( the total amount you are doing something out of ). This is letter n.
Where does the probability_s fit into the binom.dist function and what does probability_s mean? What letter is it denoted as in the alternative equation?
this is the chance that something will happen, ONLY a percentage/decimal. This is letter p.
What is the difference between TRUE and FALSE in a binom.dist function?
TRUE: probability of a success occurring OR LESS
FALSE: EXACT probability of a success occurring
What are the 4(????) conditions that make a probability distribution binomial?
Criteria 1: The experiment must be a multi-step experiment. We call each step a trial, and the number of trials n
Criteria 2: Each trial must be identical and independent
Criteria 3: Each trial has a notion of success (p) and failure (q).
Criteria 4: “What is the probability of observing a certain amount of successes during our n trials??” must be answered
Shaq has a 52.7% free-throw average, meaning that when he attempts a free-throw, he has a 52.7% chance to successfully
make it. If he attempts 14 free-throws during a game, what is the probability he makes less than 9 of them?
=BINOM.DIST(8,14,52.7%,TRUE)
Define PDF.
PDF stands for Probability Density Function is a way to show probabilities for continuous outcomes, focusing on ranges of outcomes rather than specific numbers, and it uses the concept of “area under the curve” to talk about probabilities
How do you calculate the area under a PDF?
You use the norm.dist function. If it is between 2 points, you use (=NORM.DIST(x2, mean, st dev, TRUE) - NORM.DIST(x1, mean , stdev, TRUE)).The area will ALWAYS equal one.