Git Product home page Git Product logo

miller_rabin's Introduction

miller_rabin

An Erlang module implementing the Miller-Rabin test. This test is a probabilistic test for primality of numbers. It is the alogrithm used in Mathematica.

The module exports three functions that can be used to check for primality:

is_probable_prime(N)

and

is_probable_prime(N, K)

These functions use the original, undeterministic version of the algorithm. That means it can yield true for a number that is composite, but this is very rare. The first function tests against K = 20 random bases per default.

is_prime(N)

This function uses the deterministic variant of the algorithm. It is reliable for numbers N < 341,550,071,728,321. This version uses not random sets of bases, like the original version, which could yield false positives. Instead it uses sets which have been shown to not yield false positives for the intervals in which the function is defined.

Example Usage

This example prints all primes up to 1000.

-module(example).

-import(miller_rabin, [is_prime/1]).

-compile([export_all]).

primes_below_1000() ->
    L = lists:seq(1, 1000),
    lists:map(fun(X) ->
                      case is_prime(X) of
                          true  -> io:format("~w~n", [X]);
                          false -> false
                      end
              end,
              L),
    ok.

Links

License

MIT. See MIT-LICENSE file.

miller_rabin's People

Contributors

blinkov avatar febeling avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.