symtegration-0.4.0: Library for symbolic integration of mathematical expressions.
CopyrightCopyright 2025 Yoo Chung
LicenseApache-2.0
Maintainerdev@chungyc.org
Safe HaskellNone
LanguageGHC2021

Symtegration.Polynomial.Indexed

Description

 
Synopsis

Documentation

type IndexedPolynomial = IndexedPolynomialWith Rational Source #

Polynomial representation which maps the power of each term to its coefficient. Exponents are represented with Int, while coefficients are represented with Rational. It is an instance of the Polynomial type class.

type IndexedSymbolicPolynomial = IndexedPolynomialWith Expression Source #

Polynomial representation which maps the power of each term to its coefficient. Exponents are represented with Int, while coefficients are represented with Expression. It is an instance of the Polynomial type class.

type IndexedPolynomialWith a = P Int a Source #

Polynomial representation which maps the power of each term to its coefficient. Exponents are represented with Int. Coefficients have a type as specified by the type parameter. These types are an instance of the Polynomial type class.