Skip to content

Instantly share code, notes, and snippets.

@z-------------
Last active October 22, 2019 20:25
Show Gist options
  • Save z-------------/da1c0968c4fed913f3702e541c1f0591 to your computer and use it in GitHub Desktop.
Save z-------------/da1c0968c4fed913f3702e541c1f0591 to your computer and use it in GitHub Desktop.
const Z = 1.65; // z_a/2 (a = 0.95)
const Z2 = Math.pow(Z, 2);
const w = (p, n) => (p + Z2 / (2 * n) - Z * Math.sqrt((p * (1 - p) + Z2 / (4 * n)) / n)) / (1 + Z2 / n);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment