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
Factorize 81xsquared+180x+100
bekas [8.4K]

Answer:

  • 81x²+180x+100
  • 9x²+180x+10²
  • using (a+b)²=a²+b²+2ab
  • 9x²+2(9x)(10)+10²
  • (9x+2)²=(9x+2)(9x+2)
5 0
2 years ago
Put in order from least to greatest 65, 34, -50, 28, -64, -45​
PIT_PIT [208]
-64, -50, -45, 28, 34, 65
7 0
3 years ago
Read 2 more answers
Anyone know this? Ill give brainliest if right pls help ^^
Varvara68 [4.7K]

Answer:

Female=14 male=6

Step-by-step explanation:

Oof this toke long I understand it now, for yesterday you gotta do  6+6+6+6+6=30 this is the male and so you add 14 to 30=44, now comes the important part of solving this problem. For today you gotta add 4 men and 4 women so you do 6+6+6+6=24 now 14+14+14+14=56 and if you add 56+24=80 .

4 0
3 years ago
A college-entrance exam is designed so that scores are normally distributed with a mean of 500 and a standard deviation of 100.
yawa3891 [41]

Answer:

The probability is  0.003

Step-by-step explanation:

We know that the average \mu is:

\mu=500

The standard deviation \sigma is:

\sigma=100

The Z-score is:

Z=\frac{x-\mu}{\sigma}

We seek to find

P(x800)

For P(x>800) The Z-score is:

Z=\frac{x-\mu}{\sigma}

Z=\frac{800-500}{100}

Z=3

The score of Z = 3 means that 800 is 3 standard deviations from the mean. Then by the rule of the 8 parts of the normal curve, the area that satisfies the conficion of 3 deviations from the mean has percentage of 0.15%

So

P(x>800)=0.15\%

For P(x<200) The Z-score is:

Z=\frac{x-\mu}{\sigma}

Z=\frac{200-500}{100}

Z=-3

The score of Z = -3 means that 200 is 3 standard deviations from the mean. Then by the rule of the 8 parts of the normal curve, the area that satisfies the conficion of 3 deviations from the mean has percentage of 0.15%

So

P(x

Therefore

P(x800)=P(x800)

P(x800)=0.0015 + 0.0015

P(x800)=0.003

6 0
3 years ago
the same cafe uses 18.5 cups of flour to make 100 servings of pancakes.how many cups of flour are in one serving of pancakes?
FinnZ [79.3K]
About 5.4, it's 100 divided by 18.5
7 0
3 years ago
Read 2 more answers
Other questions:
  • Mario wants to estimate how much it will cost him to fill his pool with water for the summer. First, he needs to find the volume
    14·1 answer
  • How to do this equation 2 radical 6 minus 3 radical 6
    8·1 answer
  • What is the quotient? x-3 divided into 4x2+3x+2
    7·2 answers
  • Please help me on my homework! :) Its due tomorrow and I need help on numbers 3-6 thanks ;) (picture attached)
    11·1 answer
  • Given fx() = 6(1 - x), what is the value of f(-8) ?
    11·1 answer
  • What is the slope of the line y = 1?
    9·2 answers
  • If you were a colonist in the mid-1770s would you have stood with the Patriots or the Loyalists? Write an argumentative essay in
    8·1 answer
  • What is the slope of the line that passes through the points (10, 3) and (2, 3) ?
    10·2 answers
  • Please help me thanks
    7·1 answer
  • Find the measures of the interior angles.
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!