numeric-prelude-0.3: An experimental alternative hierarchy of numeric type classes

Algebra.Differential

Synopsis

Documentation

class C a => C a whereSource

differentiate is a general differentation operation It must fulfill the Leibnitz condition

   differentiate (x * y) == differentiate x * y + x * differentiate y

Unfortunately, this scheme cannot be easily extended to more than two variables, e.g. MathObj.PowerSeries2.

Methods

differentiate :: a -> aSource

Instances

C a => C (T a) 
C a => C (T a) 
C a => C (T a)