What does the ln mean here?
It's from this page.
https://en.wikipedia.org/wiki/Universally_unique_identifier#Collisions
Finally, what could I have done to find out for myself? (What did I miss?) I know so little I can even tag the question!
Just because it might be useful for someone working on database identifiers, here's the code I ended up with.
public static double HappyBirthday(double charCount, double keyLength = 9)
{
// Computes the number of IDs that would need to exist in a set
// before there's a 50% chance of a collision.
const double chanceOfCollision = 0.5;
double spaceLength = Math.Pow(charCount, keyLength);
var spacesConsumed = Math.Sqrt(2 * spaceLength * Math.Log(1 / (1 - chanceOfCollision)));
return spacesConsumed;
}

\ell$\ell$ or even if handwriting using $\ell\text{n}(x)$) – JMoravitz Oct 13 '20 at 12:44