1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Alexxandr [17]
3 years ago
10

In class we derived the MOM and MLE for an exponential distribution with parameter ????. Conduct a Bootstrap simulation to compa

re the estimation of λ with sample sizes of n = 10, n = 100, and n = 500. Choose true value λ = 0.2 and use B = 1000. Calculate and compare the mean and standard error for each set of simulations to each other as well as their theoretical values.

Mathematics
1 answer:
Dimas [21]3 years ago
8 0

Answer:

Below is the R code for the bootstrapping in exponential distribution. The result is attached below.

####################################

rm(list=ls(all=TRUE))

set.seed(12345)

N=c(10,100,500)

Rate=0.2

B=1000

MN=SE=rep()

for(i in 1:length(N))

{

n=N[i]

X=rexp(n,rate=Rate)

EST=1/mean(X)

ESTh=rep()

for(j in 1:B)

{

Xh=rexp(n,rate=EST)

ESTh[j]=1/mean(Xh)

}

MN[i]=mean(ESTh)

SE[i]=sd(ESTh)

}

cbind(N,Rate,MN,SE)

Step-by-step explanation:

You might be interested in
Pls dont write silly things or ill report. which number in each set is not a factor of the given number:
Allisa [31]

Answer:

a.(4)

b.(45)

Step-by-step explanation:

A factor is a number that divides perfectly without any remainder so you can try to divide each.

For example:

-14/2=7(it's a factor of 14)

-14/4=3.5(it's not factor of 14)

5 0
2 years ago
0.3m = $4.41 what does m equals?
Sauron [17]
0.3m=$4.41 
just divide $4.41/0.3= m
m=14.7
3 0
3 years ago
Two lines, a and b, are parallel. If both of the lines are rotated 90' in the same direction and then translated to the right by
tatiyna

Answer:

b

O They will be the same line.

Step-by-step explanation:

5 0
3 years ago
Read 2 more answers
HELP ME PLEASE !!!!!?!!!!!?!!!!!!!!!!!
motikmotik

Answer:

First Graph (The left-most graph)

Step-by-step explanation:

5 0
3 years ago
Ayuda 7×9÷2=<br><br><br><br>note : btw how to get rid of this ad ?​
JulijaS [17]

Step-by-step explanation:

7×9÷2

By using the rule of BODMAS , we get

7×9÷2

7×4.5

31.5

5 0
2 years ago
Read 2 more answers
Other questions:
  • 20 POINTS AND WILL MARK BRAINLIEST
    8·2 answers
  • 4. What is the y-intercept of the line
    14·1 answer
  • Katie has 1/6 of watermelon left over from her picnic that she wants to split between her mom and dad. How much watermelon will
    9·1 answer
  • PLEASE HELP ASAP!!! CORRECT ANSWER ONLY PLEASE!!! I CANNOT RETAKE THIS!!
    10·1 answer
  • Which statements are true about finding the difference of the expressions? Select three options? 3p + 1/6p - 2p - 3/2p​
    9·1 answer
  • What is the least common multiple of 12 32
    9·2 answers
  • Which estimate best describes the area under the curve in square
    14·1 answer
  • PT=3x+7 TQ=8x-8<br><br> answer asap please
    5·1 answer
  • Who can solve this anyone
    14·1 answer
  • Which graph shows the solution to the inequality -0.5x s 7.5?
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!