Question

The number of particles emitted by a radioactive source during a ten second interval has the...

The number of particles emitted by a radioactive source during a ten second interval has
the Poisson distribution with mean λ. The radioactive source is observed over twenty non-
overlapping intervals of ten seconds each. The number of particles emitted during each
interval are: 4, 1, 3, 1, 3, 3, 3, 1, 1, 1, 6, 4, 4, 2, 2, 1, 1, 4, 2, 5. Use R and show R code!
a. Using method of moments (show your work) find an estimate for λ.
b. Create a function to represent your likelihood function from a Poisson
distribution and use the sample given above. Plot the function for a range
of appropriate possible values of λ. Find the value of λ that maximized the
likelihood.
c. Check if the theoretical maximum likelihood estimator for λ agrees with
the plot from part (b). Explain your results/observations.

Homework Answers

Answer #1

a.

R code:

x=c(4, 1, 3, 1, 3, 3, 3, 1, 1, 1, 6, 4, 4, 2, 2, 1, 1, 4, 2, 5)
m=mean(x)
lambda=seq(0,4,by=0.01)
n1=length(x)
n2=length(lambda)
p=matrix(0,n1,n2)
p1=1:n2*0
for(i in 1:n1)
for(j in 1:n2)
{
{
p[i,j]=exp(-lambda[j])*lambda[j]^x[i]/factorial(x[i])
}
}
for(j in 1:n2)
{
p1[j]=prod(p[,j])
}
p1
plot(lambda,p1,lwd=2,type="l",xlab=expression(lambda),ylab=expression(L(lambda)))
abline(v=mean(x),lwd=2,col=2)

m

Output:

m= 2.6

From the above plot it is obseved that at

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
Suppose that on the average the number of particles emitted from a radioactive substance is five...
Suppose that on the average the number of particles emitted from a radioactive substance is five per second. What is the probability that it will take less than 3 seconds for the next two particles to be emitted? A beam of length 1 , rigidly supported at both ends, is hit suddenly at a random point, which leads to a break at a position X from the right end. If the distribution of X is beta, with =4,  β=2 , what...
1. Remember that a Poisson Distribution has a density function of f(x) = [e^(−k)k^x]/x! . It...
1. Remember that a Poisson Distribution has a density function of f(x) = [e^(−k)k^x]/x! . It has a mean and variance both equal to k. (a) Use the method of moments to find an estimator for k. (b) Use the maximum likelihood method to find an estimator for k. (c) Show that the estimator you got from the first part is an unbiased estimator for k. (d) (5 points) Find an expression for the variance of the estimator you have...
The water quality of a river was investigated by taking 15 water samples and recording the...
The water quality of a river was investigated by taking 15 water samples and recording the counts of a particular bacteria for each sample, where ???? is the number of bacteria in sample ?? and the ????’s are assumed to be independent and follow a Poisson ( ?oi(?) ) distribution. The data are as follows: {27, 24, 25, 21, 30, 22, 20, 22, 29, 19, 19, 22, 23, 36, 19} 1. Find a point estimate for the population mean number...
Data was collected for 364 randomly selected 10 minute intervals. For each ten-minute interval, the number...
Data was collected for 364 randomly selected 10 minute intervals. For each ten-minute interval, the number of people entering the atrium of a large mall were recorded. The data is summarized in the table below. Number   of Guests      Frequency    220 – 239 83 240 – 259 95 260 – 279 47 280 – 299 43 300 – 319 96 What is the class width for this GFDT? Class width = The number of students in the tutoring center was recorded...
Your task is to estimate how far an object traveled during the time interval 0≤t≤80≤t≤8, but...
Your task is to estimate how far an object traveled during the time interval 0≤t≤80≤t≤8, but you only have the following data about the velocity of the object. time (sec) 0 1 2 3 4 5 6 7 8 velocity (feet/sec) -4 -3 -2 -4 -2 4 2 1 2 To get an idea of what the velocity function might look like, you pick up a black pen, plot the data points, and connect them by curves. Your sketch looks...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT