List of Nix Math Library from Ground Zero series posts: Nix Trigonometric Math Library from Ground Zero Nix Logarithmic Math Library from Ground Zero (current post) (Cover image from: Wikipedia - Logarithm ) Origin Due to a somewhat absurd reason (calculating the physical distance between VPS to estimate network latency), I implemented a somewhat absurd trigonometric function library using Nix . After I published the trigonometric function library on GitHub , I found that someone actually used it! It seems my needs weren't too absurd after all. In the repository's Issues, a user suggested that I add some exponential/logarithmic function support to this math library , such as exp , ln , pow , and log . Since implementing these basic functions from scratch is also quite interesting,...