The answer is TRUE
Solution:
Case 1: When the value of a is positive
For Uniform (a, b) the likelihood function is "L(x_1, ..., x_n|a, b) = (\\frac{1}{b\u2212a})^n" for any sample. To maximize this we must minimize the value of (b − a) (interval length), yet we must keep all samples with in the range, i.e. "\u2200x_i , x_i \u2208 (a, b)".
An MLE for a and b would then be "\\hat a = min(X_i)" and "\\hat b = max(X_i)".
These values yield the minimal length since it’s the smallest interval to include all sampled points.
Case 2: When the value of first parameter is negative (let's denote it as "-a")
For Uniform (-a, b) the likelihood function is "L(x_1, ..., x_n|a, b) = (\\frac{1}{b+a})^n" for any sample. To maximize this we must minimize the value of (b + a), yet we must keep all samples with in the range, i.e. "\u2200x_i , \u2212a \u2264 x_i \u2264 b" . An MLE for A would be "-\\hat a = min(X_i)". This is the smallest value that promises that all sampled points are in the required range. Note here that the negative sign before a is just to denote that it's a negative value. So again the MLE for the first parameter is min(Xi).
Thus, the statement provided in the question holds true for both cases. Hence it is a TRUE statement.
Comments
Leave a comment