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
An integer ω is an n-th root of unity modulo p if ωn≡1(modp)
In other words, ωn "wraps around" due to modular reduction to yield exactly 1. A particular case is when no integers smaller than n yield 1 modulo p. In this case, ω is called a primitive root of unity: ωk≡1(modp) for any 0<k<n.
Roots Of Unity Example
Let's observe a finite field of order p=7: F7=0,1,2,3,4,5,6. Let's see that 2 and 4 are the 3rd roots of unity in such a field:
23≡8≡1(mod7), so 2 is a 3rd root of unity modulo 7.
43≡64≡1(mod7), so 4 is another 3rd root of unity modulo 7.
1 itself is a root of unity, too, and is called a trivial root of unity.
Special Property Of The Sum Of Roots of Unity
Let's consider a finite field Fp that has n-th roots of unity. Let ω be a primitive n-th root of unity in Fp, which means ωn=1 and no smaller positive power of ω equals 1.
The n-th roots of unity in Fp are 1,ω,ω2,…,ωn−1.
Claim: 1+ω+ω2+…+ωn−1=0 (the sum of all the roots of unity in a finite field is equal to zero).
Proof:
Consider the sum S=1+ω+ω2+…+ωn−1. We can multiply S by ω−1, noting that ω−1=0 so that such a multiplication preserves the equality:
Expanding the right hand side, we get:
Notice that if we were to expand further, every term except ωn and −1 would cancel out:
Since ω is a primitive n-th root of unity, ωn=1. So, ωn−1=0. Therefore:
If the product of two factors is zero, at least one of them must be zero. We already established that ω−1=0, thus S must be zero: S=0. Therefore,
Let's also check it on our previous toy example of F7 and n=3: 1+2+4=7≡0(mod7).
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.
Let's consider a polynomial B(X) that evaluates to an i-th user balance bi at a "user's point" - some value xi that is designated for this specific user:
B(xi)=bi.
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:
Where Li(X) is the Lagrange basis polynomial defined as a product:
A polynomial constructed using the Lagrange interpolation is known to have the degree d=n−1 where n is the number of users (and the number of the corresponding balance evaluation points). The resulting polynomial should look like the following:
Let's choose the xi values as the i-th degrees of an n-th root of unity (assuming that we are performing all the calculations in the prime field with a sufficiently large modulus):
B(ωi)=bi where ω is the n-th primitive root of unity and i∈0..n−1.
Grand Sum Of The Polynomial Evaluations
To prove the solvency of the Custodian, we need to find its total liabilities by summing up all the user balances and to prove to the public that the sum is less than the assets owned by the Custodian. An individual i-th user balance is the evaluation of the polynomial at the ωi value corresponding to the user:
Let's calculate the sum S of all the user balances as the 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:
As it turns out, the Halo2 proving system is internally using the roots of unity as X coordinates for the polynomial construction, and we will later see how we can take advantage of that.
Last updated