I have a problem that hasn't yet been addressed, although follows similar lines of reasoning here and here. My problem is as follows:
I have $N$ urns, each with a different number of black and white marbles. Denote the $i^{th}$ urn, $u_i$ having $n_i$ black marbles, and $N_i - n_i$ white marbles.
What I want is to know the minimum number of samples I should take (without replacement) from each urn such that I have a "reasonable estimate" of how many white marbles I have in total. Let's replace "reasonable estimate" with 95% credible intervals. And as I sample more and more my credible intervals decrease. Assume urns are independent of each other.
My first attempt was to model $n_i$ as a Hypergeometric, so that I can use a Beta-Binomial conjugate prior, which yields a Beta-Binomial posterior, per this answer. And I was thinking that I could just take samples from the posterior to develop a credible interval for each urn. And perhaps multiply them together in some way (since they are independent).
But my problem is that I don't know what the actual distribution of white to black marbles are in each urn. I want to come up with an estimate for this based on a small sample.
Can anyone provide some insight as to how I can approach this problem?