How many values can a UUID v4 take?
How many do you have to generate before a collision becomes a remote possibility?
replies(5):
If your random is not uniformly distributed, you might get duplication from bias.
If your random is setup wrong and you get the same seeding multiple times, you might get duplication from that.
If your random is good, the birthday math should hold.