Skip to content

Instantly share code, notes, and snippets.

@leandronsp
Created May 16, 2016 23:28
Show Gist options
  • Save leandronsp/b605f153d6ee016a3f9872616e2b85dc to your computer and use it in GitHub Desktop.
Save leandronsp/b605f153d6ee016a3f9872616e2b85dc to your computer and use it in GitHub Desktop.
# exact point
3.0 ^ ((0.0 + 1.0) ^ -0.1) => 3.0
# getting longer
3.0 ^ ((0.5 + 1.0) ^ -0.1) => 2.87
3.0 ^ ((100 + 1.0) ^ -0.1) => 1.99
# so far
3.0 ^ ((99999999 + 1.0) ^ -0.1) => 1.19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment