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
PLEASE ANYONE HELP I NEED IT DONE BY 11:59 this is the second part to the first part six question all together someone please he
Archy [21]
I believe question 4 is 40 but I’m not sure
6 0
3 years ago
Answer 10,11 and 12 for 100 points
geniusboy [140]
10) 7(2m+3)
11) 3(3r-1)
12) 2p(5q+4)
3 0
3 years ago
Read 2 more answers
Ronald is calculating the time required to fill the swimming pool at school. He found that it takes 8 minutes to fill the swimmi
tester [92]

Answer:

<u>The rate the swimming pool is filled is 9 gallons of water per minute</u>

Step-by-step explanation:

Let's review the information provided by Ronald to us to help him to find the answer to the question:

Time it takes to fill the swimming pool = 8 minutes

Amount of water the swimming pool can hold = 72 gallons

2. At what rate does the swimming pool fill, in gallons per minute?

Rate the swimming pool is filled = Amount of water the swimming pool can hold /Time it takes to fill the swimming pool

Replacing with the real values, we have:

Rate the swimming pool is filled = 72/8 = 9 gallons of water per minute

4 0
3 years ago
Find the value of x........
raketka [301]

Answer:

x=23

Step-by-step explanation:

Hello There!

Remember the exterior angle of a triangle is equal to the opposite interior angles of a triangle

so

137-x=2x+3x-1

now we can solve for x

step 1 combine like terms

2x+3x=5x

now we have

137-x=5x-1

step 2 add 1 to each side

-1+1 cancels out

137+1=138

138-x=5x

step 2 add x to each side

-x+x cancels out

5x+x=6x

now we have

138=6x

step 3 divide each side by 6

6x/6=x

138/6=23

we´re left with x=23

7 0
3 years ago
What is 100/20and 54/7
Deffense [45]

Answer:

they are improper fractions

5 0
3 years ago
Other questions:
  • To determine customer satisfaction with their service department, an automobile dealer randomly selects 20 hybrid-vehicle owners
    15·2 answers
  • How many min are in 5 hours?
    5·1 answer
  • A circle passes through point (−2, −1) and its center is at (2, −1). Which equation represents the circle?
    11·1 answer
  • A charity run has prizes for the top finisher in each of 10 age categories. The
    8·2 answers
  • HELP PLEASE ANSWER THIS <br><br>50 times 5​
    10·2 answers
  • Write the equation x2+24x+60=0 in the form (x+p)2=q
    11·1 answer
  • Mary is going down a straight waterslide that is 150 feet above the ground. The waterslide is 225 feet long. What is the angle o
    5·1 answer
  • Pls help !!!<br> find the rate of change on [-1, 4]
    14·1 answer
  • Find the slope <br><br> I’ll mark you Brian list
    9·2 answers
  • X – 0.25x = 0.75x
    14·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!