a) What is an exponential distribution (include an APA citation)?___________________________
b) When would you use an exponential distribution?________________________
c) What is a binomial distribution (include an APAcitation)?_______________________
d) When would you use a binomial distribution?___________________
3. Task
Run these commands in R, then use your own words todescribe what the resulting numbers represent. You can getsome information about the functions by using the help commands inR (such as ?pbinom to get information about the pbinom() command inR):
a) pbinom(q=5, size=10, prob=1/6)
b)
n=10
p=.5
x=9
pbinom(x, n, p)
c) punif(5, min=1, max=10) - punif(4, min=1,max=10)