An open API service indexing awesome lists of open source software.

https://github.com/michelenatale/mathematic

Some interesting mathematical tools that you can use again and again. These include CircleFitter, GaloisField, Coprimes, and Fast Big Primes BigInteger Async-Await Generator.
https://github.com/michelenatale/mathematic

aes algorithms async-await bigprimes circle-fitting coprimes finitefield galoisfield mathematics prime-generator prime-numbers primes primesieve

Last synced: 5 days ago
JSON representation

Some interesting mathematical tools that you can use again and again. These include CircleFitter, GaloisField, Coprimes, and Fast Big Primes BigInteger Async-Await Generator.

Awesome Lists containing this project

README

          

# Mathematic

## Generate coprimes

Generate coprimes in any quantity with Full-Generic.

https://github.com/michelenatale/Mathematic/tree/main/Coprimes/TestCoprimes

## Circle-Fitter

Is a very simple circle fitter that uses the Gauss-Newton (Least Squares) method to transform the randomly created 2D data points into a circle in the plane. I used the partial derivative for this. No additional libraries are required.

https://github.com/michelenatale/Mathematic/tree/main/CircleFitter

## Galois Field or Finite Field

Is a very simple [Galois Field](https://en.wikipedia.org/wiki/Finite_field), or [Finite Field](https://en.wikipedia.org/wiki/Finite_field) calculator with the base 2 (Generator, Character), which has two main operations, [addition and multiplication](https://en.wikipedia.org/wiki/Finite_field_arithmetic). All other operators (subtraction, division, inverse, etc.) are operations that follow very specific mathematical rules and are therefore legitimate.

https://github.com/michelenatale/Mathematic/tree/main/GaloisField2x

## Big Primes Async-Await Generator

A very fast cryptographically secure generator for very big primes numbers (BigInteger) based on the producer-consumer principle.

https://github.com/michelenatale/Mathematic/tree/main/BigPrimesGenerator