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.
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!

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.
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.