Question

Question 1) The concentration, X, in ppm of chlorophyll in outfield grass be modeled as a...

Question 1) The concentration, X, in ppm of chlorophyll in outfield grass be modeled as a gamma random variable with parameters α = 5 (α is called shape in R.) and β = 12 (β is called scale in R.). Thus, X has probability density:

f(x,α,β) = 1 / β^αΓ(α) xα−1e−x/β for 0 ≤ x ≤ ∞ and 0 otherwise with α = 5 and β = 12

Note that Γ(α) is the gamma function. In R, there is a built-in function gamma() which calculates this. Hint: Solve this with the built-in R functions for the gamma distribution (dgamma(),pgamma(), qgamma()) not f as defined above. Otherwise you will get numbers too large to use. For a) and b) the text (and notes) give formulas for the answers. You can calculate from these formulas.

a) What is the expected value of X?

b) What is the variance of X?

c) What is the standard deviation of X?

d) What is the probability that X is larger than its expected value?

e) What is the probability that X is > 80?

f) What is the probability that X is > 110?

g) What is the probability that X > 110 given that X > 80?

h) Calculate the median of X.

l) Enter any comments in the text box below.

Homework Answers

Answer #1

a) E(X)=5*12=60

b)

c) SD(X)=square root of Var(x)=26.83282

d) P(X>E(X))=P(X>60)=1-P(X<=60)=1-0.5595067=0.4404933

e) P(X>80)=1-P(X<=80)=0.2056272

f)P(X>110)=1-P(X<=110)=0.04959444

g)P(X>110|X>80)=P(X>110)/P(X>80)=0.04959444/0.2056272=0.2411862

h) Repeating the calculation of P(X<=m) (by pgamma(m,shape=5,scale=12) in R) for different choices of m , we find that for  m= 56.051, the above becomes 0.5.

Thus median is 56.051.

i) Mean is more than the median

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
The special case of the gamma distribution in which α is a positive integer n is...
The special case of the gamma distribution in which α is a positive integer n is called an Erlang distribution. If we replace β by 1 λ in the expression below, f(x; α, β) = 1 βαΓ(α) xα − 1e−x/β x ≥ 0 0 otherwise the Erlang pdf is as follows. f(x; λ, n) = λ(λx)n − 1e−λx (n − 1)! x ≥ 0 0 x < 0 It can be shown that if the times between successive events are...
Let X ∼ Beta(α, β). (a) Show that EX 2 = (α + 1)α (α +...
Let X ∼ Beta(α, β). (a) Show that EX 2 = (α + 1)α (α + β + 1)(α + β) . (b) Use the fact that EX = α/(α + β) and your answer to the previous part to show that Var X = αβ (α + β) 2 (α + β + 1). (c) Suppose X is the proportion of free-throws made over the lifetime of a randomly sampled kid, and assume that X ∼ Beta(2, 8) ....
I. Solve the following problem: For the following data: 1, 1, 2, 2, 3, 3, 3,...
I. Solve the following problem: For the following data: 1, 1, 2, 2, 3, 3, 3, 3, 4, 4, 5, 6 n = 12 b) Calculate 1) the average or average 2) quartile-1 3) quartile-2 or medium 4) quartile-3 5) Draw box diagram (Box & Wisker) II. PROBABILITY 1. Answer the questions using the following contingency table, which collects the results of a study to 400 customers of a store where you want to analyze the payment method. _______B__________BC_____ A...
*Answer all questions using R-Script* Question 1 Using the built in CO2 data frame, which contains...
*Answer all questions using R-Script* Question 1 Using the built in CO2 data frame, which contains data from an experiment on the cold tolerance of Echinochloa crus-galli; find the following. a) Assign the uptake column in the dataframe to an object called "x" b) Calculate the range of x c) Calculate the 28th percentile of x d) Calculate the sample median of x e) Calculate the sample mean of x and assign it to an object called "xbar" f) Calculate...