Point estimation of mean and standard deviation to calculate parameters?

2.9k Views Asked by At

I've tried to search for an answer to this question but did not manage to find one.

I have an assignment where we were given some data of a secret distribution, we are supposed to test these 3 models for the data.

enter image description here

According to instructions we're supposed to use the point estimate of the mean & standard deviation to estimate the parameters a and b.

Now for my question: I've calculated the standard mean & deviation, but how can I estimate the parameters a and b using this information?

I don't see how I can use those to estimate a and b.

Thanks!

2

There are 2 best solutions below

0
On BEST ANSWER
  1. $f(x) = Ke^{-ax}, \, x \geq 0$

First, compute $K$ so that $f(x)$ is a probability distribution.

$$\int\limits_0^\infty Ke^{-ax} \, dx=1 \Rightarrow \frac{K}{a} = 1 \Rightarrow K = a$$

Likelihood expression will be,

$$L(a) = \prod_{i=1}^n f(x_i) = \prod_{i=1}^n ae^{-ax_i} = a^ne^{-a \sum\limits_{i=1}^n x_i}$$

$$\log(L(a)) = n\log(a) -a\sum_{i=1}^n x_i$$

Now, you would like to maximize the likelihood (which is equivalent to maximizing log likelihood) by computing the best possible value of $a$ (Maximum Likelihood Estimate (MLE) of $a$). Take the derivative of log likelihood and equate it to zero.

$$\frac{n}{a} - \sum_{i=1}^n x_i = 0 \Rightarrow a = \frac n {\sum\limits_{i=1}^n x_i}$$

Therefore, $a_\text{MLE} = \frac{n}{\sum\limits_{i=1}^n x_i} = \frac 1 {\hat{\mu}}$, where $\hat{\mu}$ is the sample mean.

  1. $f(x) = Kxe^{-ax}$

Find K.

$$\int\limits_0^\infty Kxe^{-ax} \, dx = 1 \Rightarrow 0 + \frac{K}{a}\int\limits_0^\infty e^{-ax} \, dx = 1 \Rightarrow \frac{K}{a^2} = 1 \Rightarrow K = a^2$$

Now, the expression of likelihood,

$$L(a) = \prod_{i=1}^n a^2x_i e^{-ax_i} = (a^2)^n \, e^{-a\sum\limits_{i=1}^n x_i} \prod_{i=1}^n x_i$$

$$\log(L(a)) = 2n\log(a) -a\sum\limits_{i=1}^n x_i + \sum_{i=1}^n \log(x_i)$$

Take derivative with respect to $a$ and equate to zero.

$$\frac{2n} a - \sum_{i=1}^{n}x_i = 0 \Rightarrow \frac 2 a - \hat{\mu} = 0 \Rightarrow a = \frac{\hat{\mu}} 2 $$

Now, I'll leave the third part to you.

5
On

Presumably you have calculated the sample mean - usually called $\bar x$. This can be used as an unbiased estimate of the population mean. Let's call this value $\hat \mu$

Presumably you have also calculated the sample standard deviation. This is trickier. If you have used $n$ as the divisor, then what you have is a biased estimate of the standard deviation of the population. If you have used $n-1$ as the divisor, then what you have is an unbiased estimate of the population standard deviation. Let's call this $\hat \sigma$.

Now to consider the population mean $\mu$. This can be found from the pdf.

$\mu=\int_0^{\infty}xe^{-ax}dx$ - use integration by parts. This will give you an expression for $\mu$ in terms of $a$. You can equate this expression to $\hat \mu$ and rearrange to make $a$ the subject - there's your estimate of $a$.