From this post, the birthday problem involving more than 2 people can be approximated using a Poisson random variable. But I am wondering whether a binomial random variable can be used here. I imagine that for each person, there is some chance that they have a particular birthday and some chance to not have a particular birthday. Plus, when there are more people in the room (which makes the probability of having distinct birthdays very low), a binomial random variable will behave like a Poisson random variable.
As an example in a room of 23 people, the Poisson approximation is
$$1-\exp\left(-\frac{{23 \choose 2}}{365}\right)=0.5$$
If binomial random variable is preferred,
$$1-\left({{23 \choose 2} \choose 0} \left( \frac{1}{365} \right)^0 \left( \frac{364}{365} \right)^{{23 \choose 2}}\right)=0.50048$$
It looks close enough. My professor said that I can't use the binomial distribution to solve the birthday problem because events are not independent. Does what I found contradicts what he said?