2.2 Flashcards
What is a binomial random variable?
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.
What function do you use in R to find the exact values for binomial random variables?
dbinom (x, size, p)
What function do you use in R to find the tailing values for binomial random variables?
pbinom (q, size, p)
What are hypergeometric random variables?
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.
What is the difference between hypergeometric and binomial random probability?
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.
What function in R can be used to calculate the exact values for hypergeometric random variables?
dhyper (x, m, n, k)
What function in R can be used to calculate the tailing values for hypergeometric random variables?
phyper (q, m, n, k)
What is the Poisson random variable distribution?
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.
What does lambda represent?
This is the average or expected value that a number of events will occur during or in the amount of time/area.
What is reparametrizing?
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.
What is the function that codes for exact values for Poisson?
dpois (x, lambda)
What is the function that codes for tail values for Poisson?
ppois (x, lambda)
What are the parameters of binomial random variables?
P = the probability of success of the trial n = the number of trials in the experiment
What are the parameters of Poisson random variables?
lambda = the average number of events taking place in the time/area
What are the parameters of hypergeometric random variables?
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)