2.2 Flashcards

1
Q

What is a binomial random variable?

A

The experiment has identical independent trials and the number of trials is fixed, there are 2 dichotomous options such as yes/no, the probability of the trial being successful is constant for all of the trials and replacement occurs.

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

What function do you use in R to find the exact values for binomial random variables?

A

dbinom (x, size, p)

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

What function do you use in R to find the tailing values for binomial random variables?

A

pbinom (q, size, p)

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

What are hypergeometric random variables?

A

The experiment involves randomly selected elements without replacement, the experiment has 2 dichotomous options such as yes/no, the success probability of the trial changes per trial.

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

What is the difference between hypergeometric and binomial random probability?

A

The primary difference is that the probability of success of the trial is constant for binomial random variables and changing for hypergeometric random variables. Also, hypergeometric variables do not replace the sampling but the binomial random variable does.

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

What function in R can be used to calculate the exact values for hypergeometric random variables?

A

dhyper (x, m, n, k)

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

What function in R can be used to calculate the tailing values for hypergeometric random variables?

A

phyper (q, m, n, k)

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

What is the Poisson random variable distribution?

A

The experiment involves a given amount of time or area, the probability of an event occurring in the time/area is the same for all other plots, the number of events is independent.

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

What does lambda represent?

A

This is the average or expected value that a number of events will occur during or in the amount of time/area.

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

What is reparametrizing?

A

If something changes such as the area or the amount of time the average that was given will have to be altered by multiplying by time/area.

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

What is the function that codes for exact values for Poisson?

A

dpois (x, lambda)

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

What is the function that codes for tail values for Poisson?

A

ppois (x, lambda)

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

What are the parameters of binomial random variables?

A
P = the probability of success of the trial 
n = the number of trials in the experiment
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the parameters of Poisson random variables?

A

lambda = the average number of events taking place in the time/area

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

What are the parameters of hypergeometric random variables?

A
m = the number of successes of the population
n = the number of failures of the population 
k = the number of elements drawn from the population (m+n)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a parameter?

A

The values define a random variables’ probability distribution.