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
3x − 2y = 6 <br> 3x + 10y = −12<br> Find the common x and y.
Ganezh [65]

x = 1

y = -3/2

Solution: (1, -3/2)

//Hope it helps.

7 0
3 years ago
Read 2 more answers
What is the Width, explain how you got your answer (8 points btw)
asambeis [7]

Answer:

Based off of my calculations, I got 126

Step-by-step explanation:

The formula for area would be: A = L * W

So, when finding the width (W), you would need to divide the area (A) by the length (L).

Equation: W = A / L

Now you know the equation, all you need to do is plug in the numbers:

[84 divided by 2/3]

W = 84  /  2/3

After solving this, you would get: 126

So, W = 126.

To check if we got the correct answer, we could just multiply the length times the width:

126 * 2/3

Since this equation gives us 84 as the answer, 126 is the correct width.

3 0
3 years ago
Hi i am having trouble with this question can some one help me on it i heard this app really helps you understand question i mig
Evgen [1.6K]

Answer:

n = -1

Step-by-step explanation:

Guess your question is to find n

Given:

-6 + 3n = -9

-6 + 3n = -9

Add 6 to both sides

-6 + 6 + 3n = -9 + 6

3n = -3

Divide both sides by 3

n = -3 / 3

= -1

n = -1

Check:

-6 + 3n = -9

-6 + 3(-1) = -9

-6 - 3 = -9

- 9 = - 9

6 0
3 years ago
Eileen collected 98 empty cans to recycle and Carl 82 cans. They packed a equal number of cans into each of three boxes. How man
Sonbull [250]

Answer: 60 cans in each box


Step-by-step explanation:

98+82=180

180/3=60

8 0
3 years ago
WILL GIVE BRAINLEST
e-lub [12.9K]

Answer:

c

Step-by-step explanation:a

add up 0, 1, 0, 2, 2, 1, 3, 0, 4, 0, 1, 2

6 0
2 years ago
Read 2 more answers
Other questions:
  • Which equation represents a proportional relationship? Y=-5(x+1). Y=5x+1. Y=-x. Y=1/5x
    5·1 answer
  • true or false The distance between points (x1, y1) and (4, 8) is the square root of (x1 - 8)2 + (y1 - 4)2.
    14·2 answers
  • I need help understanding ALL these problems. Any help would be great!
    14·1 answer
  • Look at Arnold's attempt to solve the equation for b:
    12·1 answer
  • Solve the equation s = a + lw for<br> the variable w.<br> Pls help quick, full explanation!
    8·1 answer
  • What is 1/3 out of 100%
    5·1 answer
  • Jose won 59 pieces of gum playing basketball at the county fair. At school he gave three to every student in his math class. He
    13·2 answers
  • Pls Help me on this standar!
    15·1 answer
  • Question 8 thank youuu
    15·2 answers
  • Hey can someone please help me in this question? ​
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!