ExtendedArithmetic.Polynomial
2022.152.744
See the version list below for details.
dotnet add package ExtendedArithmetic.Polynomial --version 2022.152.744
NuGet\Install-Package ExtendedArithmetic.Polynomial -Version 2022.152.744
<PackageReference Include="ExtendedArithmetic.Polynomial" Version="2022.152.744" />
paket add ExtendedArithmetic.Polynomial --version 2022.152.744
#r "nuget: ExtendedArithmetic.Polynomial, 2022.152.744"
// Install ExtendedArithmetic.Polynomial as a Cake Addin #addin nuget:?package=ExtendedArithmetic.Polynomial&version=2022.152.744 // Install ExtendedArithmetic.Polynomial as a Cake Tool #tool nuget:?package=ExtendedArithmetic.Polynomial&version=2022.152.744
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 can perform symbolic polynomial arithmetic on generic numeric types. All polynomial arithmetic is performed on this generic type, allowing BigInteger to be swapped out for Complex, Decimal, Double, BigComplex, BigDecimal, BigRational, Int32, Int64 and more! Check it out on my GenericArithmetic-Expression branch.
BigInteger Polynomial
- Supports symbolic univariate polynomial arithmetic including:
- Addition
- Subtraction
- Multiplication
- Division
- Modulus
- Exponentiation
- GCD of polynomials
- Functional Composition
- 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 | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETFramework 4.8
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net5.0
- 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 | 683 | 10/15/2023 |
2023.284.1620 | 461 | 10/11/2023 |
2022.152.744 | 1,065 | 6/1/2022 |
2021.364.1553 | 878 | 12/30/2021 |
2021.364.1457 | 700 | 12/30/2021 |
2021.234.2030 | 797 | 8/23/2021 |
2.1.2021.45 | 823 | 2/14/2021 |
2.1.0.1 | 874 | 1/9/2021 |
2.1.0 | 957 | 10/12/2020 |
2.0.0 | 983 | 10/2/2020 |
1.2.0.19597 | 935 | 8/31/2020 |
1.0.0.2 | 1,104 | 12/29/2019 |
1.0.0.1 | 1,033 | 11/24/2019 |
1.0.0 | 944 | 11/20/2019 |