Giter VIP home page Giter VIP logo

solidity-big-number's Introduction

Abstract

Mathematical computations over a size-limited fixed-point infrastructure, bare a fundamental tradeoff between Accuracy and Valid Input Range.

Within any computation, the only type of operation which can reduce the accuracy of the output is division.

The typical solution is to rearrange the computation such that division takes place only as the very last step.

Subsequently, intermediate results of the computation become more likely to overflow and revert the entire transaction.

This means that rearranging the computation will effectively reduce the range of input which can be handled successfully.

For example, consider a / b + c / d with a = 100, b = 51, c = 1, d = 25, and a size-limit of 8 bits (maximum value being 255).

The true value of this expression is 100 / 51 + 1 / 25 = 2.00078..., so ideally on a fixed-point infrastructure, we would want our implementation to yield 2.

The straightforward implementation a / b + c / d is very inaccurate of course.

It yields the output 100 / 51 + 1 / 25 = 1 + 0 = 1, which reflects an inaccuracy of more than 50% compared with the true value.

But rearranging it such that division takes place as the very last step using (a * d + b * c) / (b * d) reverts the transaction.

It yields the intermediate computation of a * d = 100 * 25, which overflows the given size-limit.

This package consists of the following libraries:

  • NaturalNum - a set of functions over natural numbers
  • RationalNum - a set of functions over rational numbers

NaturalNum handles the size-limit internally, thus allowing to rearrange any computation and achieve maximum accuracy without reducing the size of valid input range.

In the example above, it yields (100 * 25 + 51 * 1) / (51 * 25) = 2, which reflects an inaccuracy of less than 0.04% compared with the true value.

RationalNum maintains the entire expression as a rational number, thus allowing to avoid the rearrangement and implement the computation in its "native form".

Using it will typically be less cost-effective, hence it is advisable to use NaturalNum whenever performance is considered critical.






NaturalNum

This module implements arithmetic over natural numbers of any conceivable size.

The data structure used for representing a natural number is a uint256 dynamic array.

For performance considerations, we have refrained from wrapping it within a struct.

Hopefully, future compilers will support the usage of type over this non-primitive type.

This module supports the following operations:

  • Function encode(uint256 val) => uint256[]
  • Function decode(uint256[] num) => uint256
  • Function eq(uint256[] x, uint256[] y) => bool
  • Function gt(uint256[] x, uint256[] y) => bool
  • Function lt(uint256[] x, uint256[] y) => bool
  • Function gte(uint256[] x, uint256[] y) => bool
  • Function lte(uint256[] x, uint256[] y) => bool
  • Function and(uint256[] x, uint256[] y) => uint256[]
  • Function or(uint256[] x, uint256[] y) => uint256[]
  • Function xor(uint256[] x, uint256[] y) => uint256[]
  • Function add(uint256[] x, uint256[] y) => uint256[]
  • Function sub(uint256[] x, uint256[] y) => uint256[]
  • Function mul(uint256[] x, uint256[] y) => uint256[]
  • Function div(uint256[] x, uint256[] y) => uint256[]
  • Function mod(uint256[] x, uint256[] y) => uint256[]
  • Function pow(uint256[] x, uint256 n) => uint256[]
  • Function shl(uint256[] x, uint256 n) => uint256[]
  • Function shr(uint256[] x, uint256 n) => uint256[]
  • Function bitLength(uint256[] x) => uint256

This module assumes that every uint256[] input can ultimately be traced back to (i.e., created by) function encode.

Since the length of dynamic arrays is bounded by 2**64-1, the maximum representable value is (2**256)**(2**64-1)-1.






RationalNum

This module implements arithmetic over rational numbers of any conceivable size.

The data structure used for representing a rational number is:

struct Rnum {
    bool s;      // the represented value's negativity
    uint256[] n; // the represented value's numerator
    uint256[] d; // the represented value's denominator
}

This module supports the following operations:

  • Function encode(bool s, uint256 n, uint256 d) => Rnum
  • Function decode(Rnum num) => (bool, uint256, uint256)
  • Function eq(Rnum x, Rnum y) => bool
  • Function gt(Rnum x, Rnum y) => bool
  • Function lt(Rnum x, Rnum y) => bool
  • Function gte(Rnum x, Rnum y) => bool
  • Function lte(Rnum x, Rnum y) => bool
  • Function add(Rnum x, Rnum y) => Rnum
  • Function sub(Rnum x, Rnum y) => Rnum
  • Function mul(Rnum x, Rnum y) => Rnum
  • Function div(Rnum x, Rnum y) => Rnum






Testing

Prerequisites

  • node 16.13.0
  • yarn 1.22.10 or npm 8.1.0

Installation

  • yarn install or npm install

Compilation

  • yarn build or npm run build

Execution

  • yarn test or npm run test

Verification

  • yarn verify or npm run verify

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.