We need to find MLE of $\alpha$, $\beta$ in a pdf which is zero everywhere except, $$f(x)=\beta e^{-\beta(x-\alpha)}$$ where $x\geq\alpha$, $\beta>0$.My approach was usual, I figured for optimising L, we get, $$\bar{x}=\alpha$$ But that is blowing up the $\beta$ parameter's MLE. Could some one guide here?
Edit: Thanks for the suggestions, I realised that $\alpha=min\{x_i\}_{\forall i}$
Problems like these are tricky because it goes beyond a simple optimization problem. One has to reason about one of the parameters.
Assuming you're drawing $N$ i.i.d samples the log likelihood is:
$ \frac{\mathcal{l}(\alpha,\beta |x_1,\cdots,x_N)}{N} = N \ln(\beta) -\beta \bar{X} + \alpha $
Where $\bar{X}$ is the empirical mean of the data. The tricky part comes in seeing that to maximize the likelihood you want to maximize $\alpha$. However, it can't be infinity since this is inconsistent with observations. Therefore, to maximize $\alpha$, and to be consistent,you have $\alpha = \text{min}(x_i)$. Finally, $\beta$ can be optimized using standard calculus to give $\beta = 1/\bar{X}$.