I recently encountered a MCQ question which goes like this:
Let $X_1,X_2,...,X_n$ be independent random samples from $N(\theta,\theta)$, where both the mean and variance are $\theta$, where $\theta$ is unknown. Then which of the following statements is/are true?
(a) $\sum (X_i)^2$ is sufficient for $\theta$
(b) $\sum (X_i)$ is sufficient for $\theta$
(c) [$\sum (X_i)$,$\sum (X_i)^2$] is sufficient for $\theta$
(d) Sufficient statistics does not exist.
My Attempt: Using the factorization theorem,
$$f(x_i,\theta) = \frac{1}{\sqrt{2\pi\theta}} e^\frac{-(x_i-\theta)^2}{2\theta}$$
$$\prod f(x_i,\theta) = \prod_{i=1}^{n} \frac{1}{\sqrt{2\pi\theta}} e^\frac{-(x_i-\theta)^2}{2\theta}
= (\frac{1}{\sqrt{2\pi\theta}})^n e^\frac{-\sum_{i=1}^{n} (x_i-\theta)^2}{2\theta} \\
=(\frac{1}{\sqrt{2\pi\theta}})^n (e^\frac{-\sum_{i=1}^{n} (x_i)^2}{2\theta}e^\frac{-\theta}{2}) e^{\sum_{i=1}^{n} (x_i)}
= f_1(t,\theta) f_2(x_i)$$ where $T=\sum_{i=1}^{n}(X_i)^2$.
Thus, the statistic $T$ is sufficient for $\theta$, implying (a) is ture and (d) is false.
However, the answer for the MCQ is given as (a), (b) and (c). I am not able to prove (b) and (c) using the factorization theorem. Please help.