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.
- Host: GitHub
- URL: https://github.com/michelenatale/mathematic
- Owner: michelenatale
- License: gpl-3.0
- Created: 2024-05-28T17:41:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-12-11T23:57:30.000Z (6 months ago)
- Last Synced: 2025-12-13T05:23:10.340Z (6 months ago)
- Topics: aes, algorithms, async-await, bigprimes, circle-fitting, coprimes, finitefield, galoisfield, mathematics, prime-generator, prime-numbers, primes, primesieve
- Language: C#
- Homepage:
- Size: 174 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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