STAT Quiz 4 Binomial Distribution

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/8

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

9 Terms

1
New cards

Exact Value

binompdf(n, p, x) use the given x

Example:

Given: x = 3

Use: x = 3

2
New cards

Less than

binomcdf(n, p, x) use the value before the given x

Example:

Given: x = 3

Use: x = 2

3
New cards

At most

binomcdf(n, p, x) use the given x

Example:

Given: x = 3

Use: x = 3

4
New cards

More than

1 - binomcdf(n, p, x) use the given x

Example:

Given: x = 3

Use: x = 3

5
New cards

At least

1 - binomcdf(n, p, x) use the value before the given x

Example:

Given: x = 3

Use: x = 2

6
New cards

How likely x or x

binompdf(n, p, x) + binomcdf(n, p, x)

7
New cards

Between x and x

binompdf(n, p, x) + binompdf(n, p, x) + binompdf(n, p, x) + binompdf(n, p, x) = x

8
New cards

Mean/Average/Expected Number

mean = n x p

9
New cards

Binomial Experiment Requirements

The experiment must have a fixed number of trials and it is denoted by n.

Each trial must have only 2 possible outcomes of interest (Success , Failure)

The trials must be independent and identical.

The probability of a “success” is same for each trial and it is denoted by p.

The random variable must be the number of successes in n trials.

Parameters of a binomial distribution are n and p.