Files
haskell-math/README.md
2026-01-06 15:49:48 +01:00

26 lines
442 B
Markdown

# haskell-math
## Modular square roots algorithms
### Tonelli Shanks
file: `TonelliShanks.hs`
## primality test algorithms
### Fermat's prime test
file: `fermat-prime-test.hs`
### Miller Rabin's prime test
file: `miller-rabin-prime-test.hs`
### Solovey Strassen's prime test
file: `SoloveyStrassen.hs`
## factorization algorithms
### Fermat's factorization
file: `fermat-factorization.hs`
### Pollard's p-1
file: `PollardPminus1.hs`