There are N fish in a pond

combinatoricsmaximum likelihoodprobability

There are N fish in a pond. You use a net to catch them, and each fish is equally likely to be caught.
One day, you catch 40 fish, tag each of them, and then throw them back. The next day, you catch 30 fish in the net and note that 6 have tags.

What is your best guess of the value of N?

I think this relates to the capture – recapture problem where N= total population; n=first sample, k=tagged items, m=second sample.

$\frac{\binom{n}{k}\binom{N-n}{m-k}}{\binom{N}{m}}$

but I honestly do not know how to proceed.

Best Answer

Keeping it simple:

on Day 1 proportion of fish in pond that are tagged $=\frac{40}{N}$

on Day 2 proportion of fish in sample that are tagged $=\frac{6}{30}$

so solve $\frac{40}{N}$ = $\frac{6}{30}$ to get N = 200

Related Question