Let $X$ be a R.V. of some distribution, with PDF $f(x;a)=\frac{a\cdot 3^a}{x^{a+1}}$.
After 3 experiments, the results recieved were: $(e^6, e,e^2)$
We're asked to find the MLE for $a$
I'm not sure on how to approach this, all I know is that I'm looking for $L(a)=\prod$ of something, yet I'm not sure whether to replace $x$ with the results, and get $L(a)=\frac{a\cdot 3^a}{e^{6\cdot (a+1)}}\cdot \frac{a\cdot 3^a}{e^{a+1}}\cdot \frac{a\cdot 3^a}{e^{2\cdot (a+1)}}$ or to place the results instead of $a$ in the $\prod $ formula.
What you typically do is to study the log-likelihood instead and then solve for $\frac{d}{da}\log(L(a))=0$. In this case, you have (for $m$ samples)
\begin{equation} L(a) = \prod_{j=1}^m f(x;a) \Rightarrow \log(L(a)) = \sum_{j=1}^m \log(f(x;a)) \end{equation}
Then,
\begin{equation} \frac{d}{da}\log(L(a)) = \frac{d}{da}\sum_{j=1}^m(\log(a)+a\log(3)-(a+1)\log(x_j)) = \frac{m}{a} + m\log(3) - \sum_{j=1}^m \log(x_j) \end{equation}
from where you then obtain an estimate of $a$. Plug in the values for $x_j$, i.e. $e^6,e,e^2$, and you are finished.