Given the continuous density function $f_a: \mathbb{R} \to [0, \infty), f_a(x) = (a + 1) \cdot x^a \cdot 1_{[0, 1]}(x)$ with $a > 0$, what is the maximum-likelihood-estimator for a?
I am not sure about my current solution and would be grateful if somebody could answer my questions. First of all, I approach the problem with a small $\epsilon$ such that the like-lihood function would look like following
$$L(a; x) = P_a([X_1 \in [x_1 - \epsilon, x_1 + \epsilon], ... , X_n \in [x_n - \epsilon, x_n + \epsilon])$$ $$\approx (2 \epsilon)^n f_a(x1) ... f_a(x_n)$$ $$=(2\epsilon)^n \cdot (a + 1) \cdot x_1^a \cdot 1_{[0, 1]}(x_1) ...(a+1) \cdot x_n^a \cdot 1_{[0, 1]}(x_n)$$
From there I obtain the log-likelihood-function if no $x_i = 0$ (I am unsure about this step)
$$l(a; x) = n \log(2\epsilon) + \log(a + 1) + \log(x_1^a) + ... + \log(a + 1) + \log(x_n^a)$$
If I set the derivative of the log-likelihood-function equal to zero, I get
$$\cfrac{d}{da} l(a; x) = \cfrac{1}{a + 1} + ... + \cfrac{1}{a + 1} = \cfrac{n}{a + 1} = 0$$
I have two questions regarding this function. Am I dealing with the indicator function correctly? And am I correct that there is no maximum for $a$?