mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
897f1d0fb4
* Improved Formatting and Style
I improved formatting and style to make PyLama happier.
Linters used:
- mccabe
- pep257
- pydocstyle
- pep8
- pycodestyle
- pyflakes
- pylint
- isort
* Create volume.py
This script calculates the volumes of various shapes.
* Delete lucasSeries.py
* Revert "Delete lucasSeries.py"
This reverts commit 64c19f7a6c
.
* Update lucasSeries.py
31 lines
819 B
Python
31 lines
819 B
Python
# Python program to show the usage of Fermat's little theorem in a division
|
|
# According to Fermat's little theorem, (a / b) mod p always equals a * (b ^ (p - 2)) mod p
|
|
# Here we assume that p is a prime number, b divides a, and p doesn't divide b
|
|
# Wikipedia reference: https://en.wikipedia.org/wiki/Fermat%27s_little_theorem
|
|
|
|
|
|
def binary_exponentiation(a, n, mod):
|
|
|
|
if (n == 0):
|
|
return 1
|
|
|
|
elif (n % 2 == 1):
|
|
return (binary_exponentiation(a, n - 1, mod) * a) % mod
|
|
|
|
else:
|
|
b = binary_exponentiation(a, n / 2, mod)
|
|
return (b * b) % mod
|
|
|
|
|
|
# a prime number
|
|
p = 701
|
|
|
|
a = 1000000000
|
|
b = 10
|
|
|
|
# using binary exponentiation function, O(log(p)):
|
|
print((a / b) % p == (a * binary_exponentiation(b, p - 2, p)) % p)
|
|
|
|
# using Python operators:
|
|
print((a / b) % p == (a * b ** (p - 2)) % p)
|