ExtendedArithmetic.Polynomial
1.0.0
See the version list below for details.
dotnet add package ExtendedArithmetic.Polynomial --version 1.0.0
NuGet\Install-Package ExtendedArithmetic.Polynomial -Version 1.0.0
<PackageReference Include="ExtendedArithmetic.Polynomial" Version="1.0.0" />
paket add ExtendedArithmetic.Polynomial --version 1.0.0
#r "nuget: ExtendedArithmetic.Polynomial, 1.0.0"
// Install ExtendedArithmetic.Polynomial as a Cake Addin #addin nuget:?package=ExtendedArithmetic.Polynomial&version=1.0.0 // Install ExtendedArithmetic.Polynomial as a Cake Tool #tool nuget:?package=ExtendedArithmetic.Polynomial&version=1.0.0
Polynomial
A univariate, sparse, integer polynomial class. That is, a polynomial in only one indeterminate, X, that only tracks terms with non-zero coefficients, and all coefficients are BigInteger integers.
NOTE: 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.
Generic Arithmetic Types
- I created an implementation that uses generic arithmetic types. All polynomial arithmetic is performed on this generic type, allowing BigInteger to be swapped out for Complex, Decimal, BigComplex, BigDecimal, BigRational and System.Drawing.Color. Okay, it doesnt really perform arithmetic on System.Drawing.Color. Check it out on my GenericArithmeticTypes branch.
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. |
This package has no dependencies.
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.288.635 | 676 | 10/15/2023 |
2023.284.1620 | 460 | 10/11/2023 |
2022.152.744 | 1,064 | 6/1/2022 |
2021.364.1553 | 877 | 12/30/2021 |
2021.364.1457 | 699 | 12/30/2021 |
2021.234.2030 | 796 | 8/23/2021 |
2.1.2021.45 | 822 | 2/14/2021 |
2.1.0.1 | 873 | 1/9/2021 |
2.1.0 | 956 | 10/12/2020 |
2.0.0 | 982 | 10/2/2020 |
1.2.0.19597 | 934 | 8/31/2020 |
1.0.0.2 | 1,103 | 12/29/2019 |
1.0.0.1 | 1,032 | 11/24/2019 |
1.0.0 | 941 | 11/20/2019 |