Here's the problem:
"During a test, we asked $120$ people who Jean-Jaques Rousseau was, and $12$ of them answered that he was a driver (which is false). Estimate the proportion of the population that would give a false answer. Obtain a $95\%$ confidence interval for this proportion."
Here's my attempt.
The estimated proportion of the population that would give a false answer is $10\%$
Let $R_1, ... , R_{120}$ be r.v representing the answers of each person. Let $X$ be a r.v that counts the nb of ppl that give a wrong answer, i.e $X = \sum_{i=1}^{120} {I(R_i = 1)}$
Clearly, $X\stackrel{}{\sim} B(\ n=120, \ p= 10\%)$
From there, I can set my pivot $Q$ = $\frac{X-E(X)}{\sqrt{Var(X)}}$, where $Q \stackrel{}{\sim} N(0,1)$
So, I have $$P(-1.96 < \frac{X-E(X)}{\sqrt{Var(X)}} < 1.96) = 0.95$$ where $E(X) = n\cdot p$ and $Var(X) = np(1-p)$.
This gives me $$P(5.56 < X < 18.44) = 0.95$$
Now, finally, we can obtain the confidence interval: $$[5.56/120, 18.44/120] = [0.046,0.154]$$
I think this is correct. However, I have the feeling that this method is unnecessarily complicated for a problem that seems quite simple. I guess there is a more clever way of using the central limit theorem, but I do not know how.