Go to file
Racoonicorn bc851a5995 Update README.md 2016-12-15 19:29:11 +01:00
.gitignore Initial commit 2016-12-09 22:10:55 +01:00
LICENSE Initial commit 2016-12-09 22:10:55 +01:00
README.md Update README.md 2016-12-15 19:29:11 +01:00
arithmetic_derivative.c Update arithmetic_derivative.c 2016-12-12 15:01:54 +01:00

README.md

Arithmetic Derivative

An arithmetic derivative calculator that uses these simple formulas:

  • 0' = 1' = 0;
  • if n is a prime, n' = 1;
  • if n = ab (a and b > 1), n' = a'b + ab'
  • (-n)' = -(n')

More about arithmetic derivative: https://en.wikipedia.org/wiki/Arithmetic_derivative