Univariate Polynomial Grand Sum

Preliminaries

Modular Arithmetic

An intuitive example of modular arithmetic from our daily life is the "clock arithmetic". When we see "19:00" boarding time on a boarding pass, we know that it corresponds to "7" on the clock face. Formally, in this case we perform the modular reduction by the modulus 12:

because the clock face only has twelve hours marked on it.

Roots Of Unity In Modular Arithmetic

Roots Of Unity Example

Special Property Of The Sum Of Roots of Unity

Proof:

Expanding the right hand side, we get:

Let's see how we can take advantage of the sum of all roots of unity being zero when applied to the proof of solvency.

Data Structure & Commitment Scheme

The desired commitment scheme for Summa should have the following properties:

  • Committing to the total liabilities of the Custodian that is the sum of all user balances;

  • Allowing to publicly reveal the total liabilities without revealing any information about user balances;

  • Allowing to prove the individual user inclusion into the commitment without revealing any information about other user balances;

  • Preserving the user privacy and hiding the user data (namely the user cryptocurrency balances);

  • Outperform the Merkle sum tree in both commitment phase and proving phase.

We will demonstrate how a polynomial commitment can be used to achieve all of these properties.

We can call it a user balance polynomial. It is quite easy to construct such a polynomial using the Lagrange interpolation. The formula for the polynomial that interpolates these data points is:

Grand Sum Of The Polynomial Evaluations

Therefore, the grand sum of the user balances is simply the constant coefficient of the polynomial times the number of users:

Last updated