Note : How RangeProofs Work In Barretenberg(Aztec)

This has been copied from a hackmd post I made before this site was active.

Document structure

This document is split into five sections:

Preliminaries: This is background knowledge that will be helpful in understanding the rangeproof protocol.

PLONK Programs: This is the abstraction over PLONK that allows us to think of PLONK circuits as Programs where each row is a gate, and the row that the program is currently at is the state.

Rangeproof protocol: This section describes the rangeproof protocol by Aztec in isolation.

Rangeproof in PLONK: This section describes how the rangeproof protocol integrates into PLONK using the PLONK programs abstraction

Extras: Includes questions, details ommitted and further questions.

Notation

We use 11211_2 to denote a binary number. 11211_2 is therefore 3 in decimal. In general we use abcdbabcd_b to denote the digits aa, bb, cc, dd are in base bb. If the base is omitted, then it means base-10 ie 33 is the same as writing 3103_{10}

Preliminaries

This section will briefly note how rangeproofs work in essence using base-2. We then show how to convert a number represented in base-2 to a number represented in base-4, as this is the base that is used in the protocol by Aztec that is introduced.

Rangeproofs In Essence

The rough idea behind rangeproofs is the following:

  • Given a number x, if for example, we can show that x can be represented using 4 bits.
  • Then x must be between 000020000_2 and 111121111_2.
  • In decimal x is within the range 0 and 15. x[0,241]x \in [0, 2^4 -1]

Generalisation

We can generalise the above argument.

  • Given a number x, if we can show that x can be represented using n base-k digits.
  • Then x must be between 00..0kn\underbrace{00..0_k}_n and (k1)(k1)..(k1)kn\underbrace{(k-1)(k-1)..(k-1)_k}_n
  • In decimal x[0,kn1]x \in [0,k^n -1]

How do we show that x has n base-k digits?

This is protocol specific, this document will only discuss the method by Aztec. In their protocol, base-4(quaternary) is used. We therefore briefly recap, how to convert base-2 to base-4, as the number is initially given in base-2.

Base-2 to Base-4

Because 22=42^2 = 4 converting between binary and quaternary is fairly trivial.

  1. Given a number in binary form
  2. Starting from the right, group each digit into pairs
  3. Use Table1 to convert the numbers to base-4

We will elaborate with an example.

BinaryQuaternary
000
011
102
113

Table1 : Showing how to convert two binary digits to quaternary

Example

  • Given x is 10011010210011010_2 .
  • Lets split x into pairs 10;01;10;10;10; 01; 10; 10;
  • Using Table1, x in base-4 is 212242 1 2 2_4

What if we do not have an even number of binary digits?

Pad the left with an extra zero. Howver, in the protocol we will require an even number of digits.

Note

Note that if xx can be represented as 10 binary digits, then it can be represented as 5 quaternary digits. If yy can be represented as 11 binary digits, we must append a zero to make it even, so in quaternary yy can be represented as 6 digits.

PLONK Programs

This section will explain the abstraction from PLONK circuits to PLONK programs.

Brief overview of PLONK

In [2] Page 28, the quotient polynomial t(x) is defined.

We can split up the quotient polynomial into two parts:

  • Part a asserts that the circuit must be satisfied (Circuit satisfiability)
  • Part b asserts that the conditions for the Permutation argument must be satisfied. (Copy satisfiability)

We will focus on Part a, the circuit satisfiability equation.

qMiaibi+qLiai+qRibi+qOici+qCi=0q_{M_i} a_i b_i + q_{L_i} a_i + q_{R_i} b_i + q_{O_i} c_i + q_{C_i} = 0

The following equation asserts that the i’th gate must satisfy the following equation, where aia_i is the i’th left wire, bib_i is the i’th right wire and cic_i is the i’th output wire. The equation being satified at the i’th gate, depends on the values of qMiq_{M_i}, qRiq_{R_i}, qLiq_{L_i}, qOiq_{O_i}, qCiq_{C_i}.

Note (can skip)

If we have n gates, we have n equations. In PLONK, these equations are merged together to form polynomials. ie qM(x)q_M(x) is the polynomial formed by merging each qMiq_{M_i} at each gate. qM(x)q_M(x), qL(X)q_L(X), qR(X)q_R(X), qO(X)q_O(X),qC(X)q_C(X) are called the selector polynomials. The set of selector polynomials is the circuit description.

Lookahead

We briefly note that the equation for the i’th gate, has access to the wires in the i+1’th gate.

Program

Observations

  • The i’th equation will be applied to the i’th gate. We can think of PLONK as a collection of tuples (equationi,(ai,bi,ci))(equation_i, (a_i, b_i,c_i))
  • If each tuple is satisfied then our circuit is satisfied.

Below I will write out the tuples in a row.

ABC
a1a_1b1b_1c1c_1
a2a_2b2b_2c2c_2
a3a_3b3b_3c3c_3

Table2: Shows a PLONK program without the equations being applied to them

In Table2:

  • Column A denotes all of the left wires for the circuit and so forth. ie a1a_1 is the first left wire in the first gate.
  • Row 1 denotes the wires that are used in the first gate. This is the row that equation1equation_1 will be applied to.
  • The PLONK program is satisfied if equationi(ai,bi,ci)=0equation_i(a_i,b_i,c_i) = 0 for all ii

Definitions

Program width - The program width is the number of columns. The PLONK program in Table2 has a width of 3.

Program depth - The program depth is the number of row. The PLONK program in Table2 has a program depth of 3.

Square Program - If the program width is equal to the program depth, we say the program is square.

Summarising

We can now view PLONK circuits as PLONK programs where the i’th row signifies all of the wires at the i’th gate. A PLONK program is satisfied, if the corresponding equation is satisfied for each row.

Rangeproof Protocol

Goal: We want to prove that x is within the range [0,281][0, 2^8 -1]

Outline

We first convert x into base-4. We then prove using accumulators that q0q_0, q1q_1,q2q_2 and q3q_3 are base-4 digits that represent x, which means that x must be within the range [0,441[0, 4^4 -1 = [0,281][0,2^8 -1]

Preparation Stage

This stage takes a number in binary and converts it to base-4.

Let x be a 8-bit number.

x=(b0b1b2b3b4b5b6b7)2x = (b_0b_1b_2b_3b_4b_5b_6b_7)_2 = (q0q1q2q3)4(q_0q_1q_2q_3)_4

Accumulation Stage

In this stage, we accumulate our quaternary digits in such a way that allows us to constrain them to be between 0 and 3.

nn = The number of quaternary digits - 1. In our case n is 3.

The equation for the accumulators is as follows:

ai=j=0iq(nj)4ija_i = \sum_{j=0}^{i} q_{(n-j)}4^{i-j}

Checking the Accumulation Stage

This section computes each accumulator aia_i for x and makes a few observations that will allow us to assert the digits are indeed quaternary.

a0=q30400=q3a_0 = q_{3-0} * 4^{0-0} = q_3

a1=q30410+q31411=q34+q2a_1 = q_{3-0} * 4^{1-0} + q_{3-1} * 4^{1-1} = q_3 * 4 + q_2

a2=q30420+q31421+q32422=q342+q24+q1a_2 = q_{3-0} * 4^{2-0} + q_{3-1} * 4^{2-1} + q_{3-2} * 4^{2-2} = q_3 * 4^2 + q_2 * 4 + q_1

a3=q30430+q31431+q32432+q33433=q343+q242+q14+q0a_3 = q_{3-0} * 4^{3-0} + q_{3-1} * 4^{3-1} + q_{3-2} * 4^{3-2} + q_{3-3} * 4^{3-3} = q_3 * 4^3 + q_2 * 4^2 + q_1 * 4 + q_0

Let’s rewrite it without the algebra:

a0=q3a_0 = q_3

a1=q34+q2a_1 = q_3 * 4 + q_2

a2=q342+q24+q1a_2 = q_3 * 4^2 + q_2 * 4 + q_1

a3=q343+q242+q14+q0a_3 = q_3 * 4^3 + q_2 * 4^2 + q_1 * 4 + q_0

Observations

q2q_2

  • Observe that a14a0=q2a_1 - 4 * a_0 = q_2.
  • if q2q_2 is a quaternary digit, then a14a0[0,1,2,3]a_1 - 4 * a_0 \in [0,1,2,3].
  • This proves that q2q_2 is a base-4 digit.

q1q_1

  • Observe that a24a1=q1a_2 - 4 * a_1 = q_1.
  • if q1q_1 is a quaternary digit, then a24a1[0,1,2,3]a_2 - 4 * a_1 \in [0,1,2,3].
  • This proves that q1q_1 is a base-4 digit.

q0q_0

  • Observe that a34a2=q0a_3 - 4 * a_2 = q_0.
  • if q0q_0 is a quaternary digit, then a34a2[0,1,2,3]a_3 - 4 * a_2 \in [0,1,2,3].
  • This proves that q0q_0 is a base-4 digit.

What about q3q_3?

The easiest way to prove that q3q_3 is also a base-4 digit is to add an extra accumulator a1a_{-1} whose value is zero.

  • Observe that a04a1=q3a_0 - 4 * a_{-1} = q_3
  • If q3q_3 is a quaternary digit, then a04a1[0,1,2,3]a_0 - 4 * a_{-1} \in [0,1,2,3]
  • This proves that q3q_3 is a base-4 digit.

Constraining Stage

This section generalises the observations made when we checked the accumulation stage.

In general we observed that if :

ai+14ai[0,1,2,3]a_{i+1} - 4 * a_i \in [0,1,2,3]

Then the digits that were used in the accumulators were all base-4. Since x can be represented with q0q_0, q1q_1, q2q_2, $q_3$$. x \in [0, 4^4 -1$ = $[0,2^8 -1]$

But wait

How do we know that these values represent x?

Notice that the last accumulator a3a_3 is equal to the value of x. ie the value that we are trying to prove is within the desired range. In the next section, we can link the two together by constraining a3=xa_3 = x . This will cost an extra gate.

Rangeproof in PLONK

This section will explain how the rangeproof protocol and PLONK merge together.

Goal : We want to prove using our rangeproof protocol in PLONK, that a number x is within the range [0,2321][0,2^{32} -1]

Preparation stage

  1. We first initialise a PLONK program with a width of 4.
ABCD

Table3: Shows a PLONK program with a width of 4

  1. Add the value x you want to prove as a witness.

Accumulation stage

We compute the accumulators (a1,a0,a2,a15)(a_{-1},a_0, a_2, a_15).

Observe: For a 32 bit number, we will have 16 base-4 digits. Which in turn means, we will have 16+1 accumulators aia_i including the a1a_{-1} accumulator. In general, to constrain a n-bit number, we will require n/2+1n/2 + 1 accumulators.

Observations

For clarity, let’s observe what our program will look like with the accumulators added.

ABCD
a2a_2a1a_1a0a_0a1a_{-1}
a6a_6a5a_5a4a_4a3a_{3}
a10a_{10}a9a_9a8a_8a7a_{7}
a14a_{14}a13a_{13}a12a_{12}a11a_{11}
---a15a_{15}

Table4: Shows a PLONK program with a width of 4

Focussing on the first row: We apply ai+14aia_{i+1} - 4*a_i to the following pairs of accumulators (a3,a2)(a_3, a_2) (a2,a1)(a_2, a_1), (a1,a0)(a_1, a_0) , (a0,a1)(a_0,a_{-1}).

The only out of place tuple is (a3,a2)(a_3, a_2), however remember that PLONK equations have access to the wires in the row below it.

Observe : Each row has enough information to constrain 3 quaternary digits. However, when ai+14aia_{i+1} - 4*a_i is applied to a row, we can constrain 4 base-4 digits, because the equation has access to the next row. This is seen in Table4 where for a 32-bit number, we have 16 quaternary digits, however we need 5 rows, where the last row has unused wire values. In general, for an n-bit range proof, we will need n/8+1n/8 + 1 rows.

How many gates?

Since each row signifies a gate, for a 32-bit range proof, we will require n/8+1n/8 + 1 gates.

Row Equation

One caveat that has been glossed over is the equation that is applied to each row.

  • How do we show that a number is either 0,1,2 or 3?
  • Doesn’t the equation need to be equal to zero?

Outline

We show that each Ai=ai+14aiA_i = a_{i+1} - 4*a_i is one of the roots to the polynomial A(A1)(A2)(A3)A(A-1)(A-2)(A-3)

First we define 3 convenience variables, by repeatedly applying ai+14aia_{i+1} - 4*a_i

δ1=c4d\delta_1 = c - 4d

δ2=b4c\delta_2 = b - 4c

δ3=a4b\delta_3 = a - 4b

δ3=dnext4a\delta_3 = d_{next} - 4a

dnextd_{next} is the d wire in the next row.

The equation for each row is as follows:

δ1(δ11)(δ12)(δ13)+δ2(δ21)(δ22)(δ23)+δ3(δ31)(δ32)(δ33)=0\delta_1(\delta_1 -1)(\delta_1 -2)(\delta_1 -3) + \delta_2(\delta_2 -1)(\delta_2 -2)(\delta_2 -3) + \delta_3(\delta_3 -1)(\delta_3 -2)(\delta_3 -3) = 0

This equation forces each δi\delta_i to be either 0,1,2 or 3. This in turn forces each ai+14aia_{i+1} - 4*a_i to be 0,1,2 or 3.

Last Step

The last step is to constrain a15a_{15} the last accumulator to the value xx where xx is the witness value that we were trying to prove was within a range.

Numbers

In order to constrain a 32-bit number in PLONK. It will require 6 gates. 5 gates to constrain the quaternary digits and an extra gate to constrain the last accumulator to the witness value.

Extras

Omissions

  • The random challenge α\alpha that is applied to the circuit satisfiability equation was omitted.
  • The public inputs polynomial PI(x)PI(x) was omitted from the quotient polynomial equation.

Possible questions

Why is base-4 used and not base-8?

Looking back at the Row Equation, if we use base-8 then the degree of the quotient polynomial will be 8n. This would increase the proof size by adding 5 extra elements. Instead of tlowt_{low}, tmidt_{mid}, thight_{high} we would have t1t_1,t2t_2,t3t_3,t4t_4,t5t_5,t6t_6,t7t_7,t8t_8.

Are there any advantages to using base-8 over base-4?

If we use base-8, there will be less digits. This is because, base-8 will use less digits to represent a number than base-4. This in turn means, that there will be less accumulators since the amount of accumulators will be proportional to the amount of digits we want to show is in base-8. Less accumulators means less witnesses, which means a smaller circuit size. But is this trade-off worth it because we add 5 extra group elements.

What about base-2?

Base-2 will not increase the quotient polynomial as the equation we would need to check for each row would be A(A1)=0A(A-1)=0. We would however, have more witnesses. The question, I cannot answer is then How was base-4 chosen?

References

  1. https://git.io/JI0SF
  2. https://eprint.iacr.org/2019/953.pdf