1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
# mod [](https://hackage.haskell.org/package/mod) [](https://www.stackage.org/lts/package/mod) [](https://www.stackage.org/nightly/package/mod)
[Modular arithmetic](https://en.wikipedia.org/wiki/Modular_arithmetic),
promoting moduli to the type level, with an emphasis on performance.
Originally a part of the [arithmoi](https://hackage.haskell.org/package/arithmoi) package.
```haskell
> :set -XDataKinds
> 4 + 5 :: Mod 7
2
> 4 - 5 :: Mod 7
6
> 4 * 5 :: Mod 7
6
> 4 / 5 :: Mod 7
5
> 4 ^ 5 :: Mod 7
2
```
## Competitors
There are other Haskell packages, employing the very same idea of moduli on the type level,
namely `modular`, `modular-arithmetic` and `finite-field`. One can also use `finite-typelits`,
which covers some elementary modular arithmetic as well.
Unfortunately, all of them fall behind
in terms of performance. Here is a brief comparison:
| Discipline | `mod` | `modular` | `modular-arithmetic` | `finite-typelits` | `finite-field`
| :---------- | :----: | :-------: | :------------------: | :---------------: | :------------:
| Addition | Fast | Slow | Slow | Slow | Slow
| Small `(*)` | Fast | Slow | Slow | Slow | Slow
| Inversion | Fast | N/A | Slow | N/A | Slow
| Power | Fast | Slow | Slow | Slow | Slow
| Overflows | Safe | Safe | Unsafe | Safe | Safe
* __Addition.__
All competing implementations of
the modular addition involve divisions, while `mod` completely avoids
this costly operation. This makes a difference even for small numbers;
e. g., `sum [1..10^7]` becomes 5x faster. For larger integers the speed up
is even more significant, because the computational complexity of division is not linear.
* __Small `(*)`.__
When a modulus fits in a machine word (which is quite a common case on 64-bit architectures),
`mod` implements the modular multiplication as a couple of CPU instructions
and neither allocates intermediate arbitrary-precision values,
nor calls `libgmp` at all. For computations like `product [1..10^7]`
this gives a 3x boost to performance
in comparison to other libraries.
* __Inversion.__
This package relies on `libgmp` for modular inversions.
Even for small arguments it is about 5x faster than
the native implementation of modular inversion
in `modular-arithmetic`.
* __Power.__
This package relies on `libgmp` for modular exponentiation.
Even for small arguments it is about 2x faster than competitors.
* __Overflows.__
At first glance `modular-arithmetic` is more flexible than `mod`,
because it allows to specify the underlying representation of a modular residue,
e. g., `Mod Integer 100`, `Mod Int 100`, `Mod Word8 100`. We argue that this is
a dangerous freedom, vulnerable to overflows.
For instance, `20 ^ 2 :: Mod Word8 100` returns `44` instead of the expected `0`.
Even less expected is that `50 :: Mod Word8 300` appears to be `6`
(remember that type-level numbers are always `Natural`).
### What is the difference between `mod` and `finite-typelits`?
`mod` is specifically designed to represent modular residues
for mathematical applications (__wrapping-around__ finite numbers) and
provides modular inversion and exponentiation.
The main focus of `finite-typelits` is on __non-wrapping-around__ finite numbers,
like indices of arrays in `vector-sized`.
It features a `Num` instance only for the sake of overloading numeric literals.
There is no lawful way to define `Num` except modular arithmetic,
but from `finite-typelits`' viewpoint this is a by-product.
## Citius, altius, fortius!
If you are looking for an ultimate performance
and your moduli fit into `Word`,
try `Data.Mod.Word`,
which is a drop-in replacement of `Data.Mod`,
offering better performance and much less allocations.
## Benchmarks
Here are some relative benchmarks (less is better),
which can be reproduced by running `cabal bench`.
| Discipline | `Data.Mod.Word` | `Data.Mod` | `modular` | `modular-arithmetic` | `finite-typelits` | `finite-field`
| :---------- | :--------------: | :---------: | :-------: | :------------------: | :---------------: | :------------:
| Sum | 0.44x | 1x | 16.6x | 8.9x | 14.7x | 14.2x
| Product | 0.95x | 1x | 7.8x | 4.5x | 7.0x | 7.0x
| Inversion | 0.54x | 1x | N/A | 3.2x | N/A | 1.8x
| Power | 0.29x | 1x | 2.0x | 1.2x | 1.4x | 1.5x
## What's next?
This package was cut out of [`arithmoi`](https://hackage.haskell.org/package/arithmoi)
to provide modular arithmetic
with a light dependency footprint. This goal certainly limits the scope of the API
to the bare minimum. If you need more advanced tools
(the Chinese remainder theorem, cyclic groups, modular equations, etc.)
please refer to the [Math.NumberTheory.Moduli](https://hackage.haskell.org/package/arithmoi/docs/Math-NumberTheory-Moduli.html) module.
|