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
At noon on tuesday in Chicago the temperature in degrees Fahrenheit was -2 Fahrenheit at noon on Wednesday the temperature was 8
bagirrra123 [75]
The temperature was 6 degrees Fahrenheit
4 0
3 years ago
Read 2 more answers
Kylie buys a ceramic case priced at $75. Shipping and handling are an additional 9 2/5% of the price. How much shopping and hand
salantis [7]
\bf \begin{array}{ccllll}
amount&\%\\
\textendash\textendash\textendash\textendash\textendash\textendash&\textendash\textendash\textendash\textendash\textendash\textendash\\
75&100\\
x&9\frac{2}{5}
\end{array}\implies \cfrac{75}{x}=\cfrac{100}{9\frac{2}{5}}\implies \cfrac{75}{x}=\cfrac{100}{\frac{9\cdot 5+2}{5}}

\bf \cfrac{75}{x}=\cfrac{\frac{100}{1}}{\frac{47}{5}}\implies \cfrac{75}{x}=\cfrac{100}{1}\cdot \cfrac{5}{47}\implies \cfrac{75}{x}=\cfrac{500}{47}\implies 75\cdot 47=500\cdot x
\\\\\\
\cfrac{3525}{500}=x\implies \cfrac{141}{20}=x\implies 7.05=x
7 0
3 years ago
The floor of a triangular room has an area of 32 1/2 sq.m. If the triangle’s altitude is 7 172 m, write an equation to determine
sineoko [7]

Answer:

\frac{(2)A}{h} =b

b=0.00906m

Step-by-step explanation:

Hello! To solve this exercise we must remember that the area of ​​any triangle is given by the following equation

A=\frac{bh}{2}

where

A=area=32.5m^2

h=altitude=7172m

b=base

Now what we should do take the equation for the area of ​​a rectangle and leave the base alone, remember that what we do on one side of the equation we must do on the other side to preserve equality

A=\frac{bh}{2} \\\frac{2}{h} A=\frac{bh}{2} \frac{2}{h} \\

\frac{A(2)}{h} =b

solving

\frac{2(32.5)}{7172} =0.0090[tex]\frac{A(2)}{h} =b\\b=0.00906m

4 0
3 years ago
An airline allows each passenger 33 kilograms of luggage. Carl has to lower the weight of his suitcase by 25% to stay within the
damaskus [11]
1- 0.25= 0.75 (multiplier)

33÷0.75=44

The suitcase originally weighed 44kg

Hope this helps!
5 0
3 years ago
Read 2 more answers
Kelsey works 12 hours per week. How much does she make per hours
nataly862011 [7]
Well for minimum wage it would be $7.25 but it depends on the state
5 0
3 years ago
Other questions:
  • Tripping ran 4.8 times as many laps as Tony.If Tony ran3.7 laps how many laps did tripping run
    7·2 answers
  • (x^3)^2=x^6 true or false
    12·2 answers
  • What is 4×3^2-3+5×2=
    11·1 answer
  • What are the coordinates of the fourth point that could be connected with (–8, 0), (1, 0), and (1, –5) to form a rectangle?
    14·1 answer
  • a scale model is made of a plane whose length is 114ft and whose wingspan is 95ft if the length of the model is 31 inches, find
    5·1 answer
  • Find the area of the L shape.<br>9 cm<br>8 cm<br>3 cm<br>20 cm​
    6·1 answer
  • What does x equal????????????????//
    7·2 answers
  • HELP WILL MARK BRAINLIEST TO BEST ANSWER!!!!!!!!<br> I NEED ASAP
    5·1 answer
  • What is 32008 rounded to the nearest highest place value
    13·2 answers
  • Find the area of the circle. Round your answer to the nearest hundredth. Use. 3.14 or 22/7 for pi. 10 inch
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!