ExtendedArithmetic.GenericPolynomial 2022.322.2016

There is a newer version of this package available.
See the version list below for details.
dotnet add package ExtendedArithmetic.GenericPolynomial --version 2022.322.2016
NuGet\Install-Package ExtendedArithmetic.GenericPolynomial -Version 2022.322.2016
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ExtendedArithmetic.GenericPolynomial" Version="2022.322.2016" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExtendedArithmetic.GenericPolynomial --version 2022.322.2016
#r "nuget: ExtendedArithmetic.GenericPolynomial, 2022.322.2016"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ExtendedArithmetic.GenericPolynomial as a Cake Addin
#addin nuget:?package=ExtendedArithmetic.GenericPolynomial&version=2022.322.2016

// Install ExtendedArithmetic.GenericPolynomial as a Cake Tool
#tool nuget:?package=ExtendedArithmetic.GenericPolynomial&version=2022.322.2016

GenericMultivariatePolynomial

A multivariate, 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 of an arithmetic operation on two polynomials is another polynomial, not the result of evaluating those two polynomials and performing arithmetic on the results.

Generic Arithmetic Type Polynomial

  • All classes and methods support a generic type T, which can be any data type that has arithmetic operator overloads. Explicitly, the following types have tests exercising all the standard arithmetic operations (Addition, Subtraction, Multiplication, Division, Exponentiation, Modulus, Square Root, Equality and Comparison (where applicable--Complex numbers are not orderable)) and so are well supported and come with verifiable proof that they work:

    • Every .NET CLR value type (Byte, Int16, Int32, Int64, UInt16, UInt32, UInt64, Float, Double, Decimal)
    • System.Numerics.BigInteger
    • System.Numerics.Complex
    • ExtendedNumerics.BigComplex (My arbitrary-precision complex number type library)
    • ExtendedNumerics.BigDecimal (My arbitrary-precision floating-point number type library.)
    • ExtendedNumerics.BigRational(My arbitrary precision rational number type library.)
    • ExtendedNumerics.Fraction (My arbitrary-precision rational number type library.)
    • Any type that has the Addition, Multiplication and Exponentiation operator overloads (at a minimum).
  • Supports symbolic multivariate polynomial (generic) arithmetic including:

    • Addition
    • Subtraction
    • Multiplication
    • Division
    • Modulus
    • Exponentiation
    • GCD of polynomials
    • Derivative
    • Integral
    • Reciprocal
    • Irreducibility checking
    • Polynomial evaluation by assigning to the invariant (X in this case) a value.

Polynomial Rings over a Finite Field

  • Polynomial.Field supports addition, multiplication, division/modulus and inverse of a polynomial ring over a finite field. These operations do not support Complex, BigComplex, BigDecimal, or BigRational types.

    • 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:
      • Modulo an integer: All coefficients are reduced modulo an integer.
      • Modulo a polynomial: The whole polynomial is reduced modulo another, smaller, polynomial. This notion works much the same as regular modulus; The modulus polynomial, let's call it g, is declared to be equivalent to zero, and so every multiple of g is reduced to zero. You can think of it this way (although this is not how it's actually carried out): From a large polynomial, g is repeatedly subtracted from that polynomial until it can't subtract g anymore without crossing 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 polynomial was a multiple of the modulus.
      • Effectively forms a quotient ring
  • 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 (Not all types supported)
      • 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.
  • Other methods of interest that are related to, but not necessarily performed on a polynomial (Not all types supported):

    • Euler's Criterion
    • Legendre Symbol and Legendre Symbol Search
    • Tonelli-Shanks
    • Chinese Remainder Theorem
    • Polynomial evaluation by assigning to the invariant (X in this case) a value.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net5.0-windows7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 190 5/2/2023
2022.322.2016 317 11/19/2022
2022.322.1953 282 11/19/2022
2022.321.408 304 11/17/2022
2022.195.1511 435 7/14/2022
2022.187.1018 411 7/6/2022
1.0.0 457 11/30/2020