I have a random sample of 1000 values of deviates from binomial distribution with n = 52 and p^ So I have 1000 values from the distribution.
How can I find a 95% confidence interval for the true value of p? (Without using normal distribution approximations).
It seems I just have random values as a sample to find two values from within which have a 95% probability of containing p?
By
p^, I assume you mean $\hat p = 44/52,$ the estimate of the cure rate $p$ as found in the experiment done by the manufacturer of the new drug.In R, $B = 1000$ observations from $\mathsf{Binom}(n=52,\, p = 44/52)$ are generated as follows:
Then we see that (a centrally located) 95% of the values $x/52$ lie within the interval $(0.73, 0.94).$
This is close to the same interval we get with the Wald 95% confidence interval $\hat p \pm 1.96\sqrt{\frac{\hat p(1-\hat p)}{52}},$ which amounts to $(0.748, 0.944).$
Notes: (1) Of course, without simulation, we could have obtained a more accurate version of the first interval in R, using the quantile function (inverse CDF) of the appropriate binomial distribution.
(2) Especially for $n$ as small as 52, the Agresti-Coull ("plus four") CI has better coverage properties than the (asymptotic) Wald interval. Perhaps see this Q & A.