HaskellForMaths-0.4.4: Combinatorics, group theory, commutative algebra, non-commutative algebra

Safe HaskellSafe-Infered

Math.Algebras.Commutative

Description

A module defining the algebra of commutative polynomials over a field k

Synopsis

Documentation

data GlexMonomial v Source

Constructors

Glex Int [(v, Int)] 

Instances

glexVar :: Num k => v -> GlexPoly k vSource

glexVar creates a variable in the algebra of commutative polynomials with Glex term ordering. For example, the following code creates variables called x, y and z:

 [x,y,z] = map glexVar ["x","y","z"] :: GlexPoly Q String

class Monomial m whereSource

Methods

var :: v -> Vect Q (m v)Source

powers :: m v -> [(v, Int)]Source

bind :: (Monomial m, Eq k, Num k, Ord b, Show b, Algebra k b) => Vect k (m v) -> (v -> Vect k b) -> Vect k bSource

In effect, we have (Num k, Monomial m) => Monad (v -> Vect k (m v)), with return = var, and (>>=) = bind. However, we can't express this directly in Haskell, firstly because of the Ord b constraint, secondly because Haskell doesn't support type functions.

lt :: Vect t t1 -> (t1, t)Source

class DivisionBasis b whereSource

Methods

dividesB :: b -> b -> BoolSource

divB :: b -> b -> bSource

Instances

dividesT :: DivisionBasis b => (b, t) -> (b, t1) -> BoolSource

divT :: (Fractional t1, DivisionBasis t) => (t, t1) -> (t, t1) -> (t, t1)Source

quotRemMP :: (Eq k, Fractional k, Ord b, Show b, Algebra k b, DivisionBasis b) => Vect k b -> [Vect k b] -> ([Vect k b], Vect k b)Source

(%%) :: (Eq k, Fractional k, Ord b, Show b, Algebra k b, DivisionBasis b) => Vect k b -> [Vect k b] -> Vect k bSource

(%%) reduces a polynomial with respect to a list of polynomials.