The first part of a question I am trying to solve asked to find the maximum likelihood estimator for $\theta$ for a pdf $f_X(x)=\frac{2x}{\theta^2}$, $0 < x \le \theta$ , $0$ otherwise. ($X_1, X_2, X_3, \ldots , X_n$ are independent and iid)
What I've got so far is as follows:
$$L(\theta) = \begin{cases} \dfrac{2^n \prod(X_i)}{\theta^{2n}}, & \max X_i < \theta, \\[8pt] 0, & \max X_i > \theta \end{cases} $$
(Sorry I could not figure out how to get it in one bracket)
Since $\frac{2^n \prod(X_i)}{\theta^{2n}}$ is decreasing as a function of $\theta$, $L(\theta)$ is maximized at $\theta = \max (X_i)$ , i.e., $\hat{\theta} = \max(X_i)$
$$F_{\hat\theta}(x) = \left(\frac{x^2}{\theta^2}\right)^n,\mbox{ for } 0 < x \le \theta. $$
$$E[\hat{\theta}] = \int_0^\theta x\,2n \frac{x^{2n}}{\theta^{2n}} \, dx = \frac{2n}{2n+1} \theta.$$
Now I would like to find the CR lower bound for any unbiased estimator in the above problem. I believe I understand the theory of the CRLB, ie., what it is doing, but am having trouble with its application in this problem.