BigDecimal
Arithmetic and calculus with decimal numbers of arbitrary precision.
BigDecimal is a C # library that uses System.Numerics.BigInteger in its implementation, adding only a decimal place quantizer.
In BigDecimal all the arithmetic operations are implemented, including, logarithms, systems resolution of linear equations, trigonometric functions, polynomial regression, hyperbolic functions, the notorious gamma function (factorial for non-integer real numbers) and more that will be implemented still.
My intention is, at a minimum, to implement all...