Expected and Variance
More on Random Discrete
Binomial Distribution
More on Binomial Distribution
Equations Review!
100

Y = x + 3. If E[x] = 5, what is E[Y]?

8

100

Expected Value!

The sum of (X=x) + P(X=x)
100

Mu/mean of binomial

trials(n) * probability(p)

100

What are the four qualifications X must have to be a binomial random variable?

1. two outcomes (usually success or failure)

2. fixed number of trials

3. trials are independent

4. fixed probability of success

100

Conditional Rule!

P(B|A) = P(A & B) / P(B)

200

Z = 3 x X. If E[X] = 5, what is E[Z]?

15

200

Variance!

The sum of (outcome - mean)^2 * (P[E])

200

Standard deviation of binomial

square root of np(1-p)

200

According to the National Organization for Rare Disorders (NORD), about 1 in 10 Americans suffer from a rare disease. If we let X = the number in a group of 10 randomly selected Americans with a rare disease, what kind of variable is X?

Binomial random variable

200

Addition Rule!

P(A or B) = P(A) + P(B) - P(A & B)

300

Consider Var[3*x]. If X=2.6, what is Var[Z]?

23.4

300

Standard Deviation!

Square root of Var

300

RStudio function that gives P(X=k) -> exactly k successes in n trials with probability of success = p

dbinom(k,n,p)

300

According to the National Organization for Rare Disorders (NORD), about 1 in 10 Americans suffer from a rare disease. If we let X = the number in a group of 10 randomly selected Americans with a rare disease, what is the value of n?

10

300

Multiplication Rule

P(A&B) = P(A) * P(B|A)

400

If the temperature in degrees Fahrenheit at a certain location is distributed with mean 68 degrees and a standard deviation of 4 degrees, what is the mean of the temperature in degrees Celsius at the same location? It is given that C = 5/9(F - 32).

E[C] = 20

400

If X has a high variance, what can we observe?

The values of X are a long way from the mean

400

RStudio function that gives P(X is less than or equal to k) -> gives the probability of k successes or fewer in n trials with probability of success = p

pbinom(k,n,p)

400

According to the National Organization for Rare Disorders (NORD), about 1 in 10 Americans suffer from a rare disease. If we let X = the number in a group of 10 randomly selected Americans with a rare disease, what is the value of p?

1/10 = 0.1

400

Bayes' Rule!

P(E|F) / sum of P(F)

500

For funnsies, what is the empirical formula?

frequency of E / number of trials

500

The mean describes the ___ of the distribution. The standard deviation describes the ___ of the distribution.

Center; spread

500

RStudio function that gives P(X > k)

1-pbinom(k,n,p)

500

According to the National Organization for Rare Disorders (NORD), about 1 in 10 Americans suffer from a rare disease. Simulate randomly choosing a group of 10 and determine the value of X, the number in the group with this rare disease?

rbinom(10,1,0.1) = 1 person out of 10

500

Complement Rule!

P(notA) = 1 - P(A)

M
e
n
u