Binomial Probabilities using a Calculator Flashcards

(20 cards)

1
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability notation for exactly 3 successes?

A

P(X = 3)

X represents the number of successes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Let X be a binomial random variable with n=10, p=.35

What is the calculator input for the probability of exactly 3 sucesses

A

10 C 3 * (0.35^3) * (0.65^7)
or binompdf(10,.35,3)

This uses binompdf because it is asking exactly 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability rounded to three decimal places for exactly sucesses?

A

binompdf(10,.35,3)=0.231

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability notation for no sucesses?

A

P(X = 0)

X represents the number of successes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Let X be a binomial random variable with n=10, p=.35

What is the calculator input for the probability of no successes?

A

10 C 0* (0.35^0) * (0.65^10)
or binompdf(10,.35,0)

This uses binompdf because it is asking exactly 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability rounded to three decimal places for no successes?

A

binompdf(10,.35,0)=0.013

This uses binompdf because it is asking exactly 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability notation for 10 successes?

A

P(X = 10)

X represents the number of successes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Let X be a binomial random variable with n=10, p=.35

What is the calculator input for the probability of 10 successes?

A

10 C 10* (0.35^10) * (0.65^0)
or binompdf(10,.35, 10)

This uses binompdf because it is asking exactly 10

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability rounded to three decimal places for the probability of exactly 10 successes?

A

binompdf(10,.35, 10)=0.000

calculator will display 2.759E-5 which is a very small, close to 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability notation for at most 4 of successes?

A

P(X ≤ 4)
## Footnote

X represents the number of successes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Let X be a binomial random variable with n=10, p=.35

What is the calculator input for the probability of at most 4 sucesses?

A

binomcdf(10,.35, 4)

This sums the probabilities for k from 0 to 4.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability rounded to three decimal places for **at most 4 **successes?

A

binomcdf(10,.35, 4)=0.829

This is the calculated probability for at most 4 successes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability notation for more than 6 successes?

A

P(X > 6)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Let X be a binomial random variable with n=10, p=.35

What is the calculator input for the probability of more than 6 successes?

A

P(X > 6) = 1 - binomcdf(10,.35,6)

This calculates the complement of the probability for k from 0 to 6.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability rounded to three decimal places for more than 6 successes?

A

P(X > 6)=1 - binomcdf(10,.35,6)=
0.005

This is the calculated probability for more than 6 successes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability rounded to three decimal places for 5 or more successes?

17
Q

Let X be a binomial random variable with n=10, p=.35

What is the calculator input for 5 or more successes?

A

P(X>= 5)=1-binomcdf(10,.35,4)

18
Q

Let X be a binomial random variable with n=10, p=.35

What is the probability rounded to three decimal places for 5 or more successes?

A

P(X>= 5)=1-binomcdf(10,.35,4)
=.249

This is the complimentary probability of 4 or fewer successes