ExtendedArithmetic.GenericPolynomial
1.0.0
See the version list below for details.
dotnet add package ExtendedArithmetic.GenericPolynomial --version 1.0.0
NuGet\Install-Package ExtendedArithmetic.GenericPolynomial -Version 1.0.0
<PackageReference Include="ExtendedArithmetic.GenericPolynomial" Version="1.0.0" />
paket add ExtendedArithmetic.GenericPolynomial --version 1.0.0
#r "nuget: ExtendedArithmetic.GenericPolynomial, 1.0.0"
// Install ExtendedArithmetic.GenericPolynomial as a Cake Addin #addin nuget:?package=ExtendedArithmetic.GenericPolynomial&version=1.0.0 // Install ExtendedArithmetic.GenericPolynomial as a Cake Tool #tool nuget:?package=ExtendedArithmetic.GenericPolynomial&version=1.0.0
Polynomial
A univariate, sparse, generic polynomial arithmetic library. That is, a polynomial in only one indeterminate, X, that only tracks terms with non-zero coefficients. This generic implementation has been tested and supports performing arithmetic on numeric types such as BigInteger, Complex, Decimal, Double, BigComplex, BigDecimal, BigRational, Int32, Int64 and more.
All arithmetic is done symbolically. That means the result a arithmetic operation on two polynomials, returns another polynomial, not some integer that is the result of evaluating said polynomials.
BigInteger Polynomial
- Supports symbolic univariate polynomial arithmetic including:
- Addition
- Subtraction
- Multiplication
- Division
- Modulus
- Exponentiation
- GCD of polynomials
- Irreducibility checking
- Polynomial evaluation by assigning to the invariant (X in this case) a value.
- All numbers use BigInteger integers, for arbitrarily large numbers.
Polynomial Rings over a Finite Field
Polynomial.Field supports all of the above arithmetic operations, but on a polynomial ring over a finite field!
- What this effectively means in less-technical terms is that the polynomial arithmetic is performed in the usual way, but the result is then taken modulus two things: A BigInteger integer and another polynomial:
- Modulus an integer: All the polynomial coefficients are reduced modulus this integer.
- Modulus a polynomial: The whole polynomial is reduced modulus another, smaller, polynomial. This notion works much the same as regular modulus; The modulus polynomial, lets call it g, is declared to be zero, and so every multiple of g is reduced to zero. You can think of it this way (although this is not how its actually carried out): From a large polynomial, g is repeatedly subtracted from that polynomial until it cant subtract g anymore without going past zero. The result is a polynomial that lies between 0 and g. Just like regular modulus, the result is always less than your modulus, or zero if the first polynomial was an exact multiple of the modulus.
- Effectively forms a quotient ring
- What this effectively means in less-technical terms is that the polynomial arithmetic is performed in the usual way, but the result is then taken modulus two things: A BigInteger integer and another polynomial:
You can instantiate a polynomial in various ways:
- From a string
- This is the most massively-useful way and is the quickest way to start working with a particular polynomial you had in mind.
- From its roots
- Build a polynomial that has as its roots, all of the numbers in the supplied array. If you want multiplicity of roots, include that number in the array multiple times.
- From the base-m expansion of a number
- Given a large number and a radix (base), call it m, a polynomial will be generated that is that number represented in the number base m.
- From a string
Other methods of interest that are related to, but not necessarily performed on a polynomial:
- Eulers Criterion
- Legendre Symbol and Legendre Symbol Search
- Tonelli-Shanks
- Chinese Remainder Theorem
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 12.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2023.122.1339 | 232 | 5/2/2023 |
2022.322.2016 | 341 | 11/19/2022 |
2022.322.1953 | 309 | 11/19/2022 |
2022.321.408 | 326 | 11/17/2022 |
2022.195.1511 | 458 | 7/14/2022 |
2022.187.1018 | 442 | 7/6/2022 |
1.0.0 | 479 | 11/30/2020 |