Skip to content

Commit

Permalink
latex
Browse files Browse the repository at this point in the history
  • Loading branch information
katat committed Dec 6, 2023
1 parent 2b87082 commit 07996e9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/fri/naive.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ $$
\begin{align}
\text{Layer 1:} & \\
x_0&=1 \\
p_0(x_0) &= 1 + 2x_0 + 3x_0^2 \\ p_0(1) &= 6 \\ p_0(-1) &= 2 \\\\
p_0(x_0) &= 1 + 2x_0 + 3x_0^2 \\
p_0(1) &= 6 \\
p_0(-1) &= 2 \\\\
\text{Layer 2:} & \\
x_1&=x_0^2 \\
p_1(x_1) &= 3 + 3x_1 \\
Expand All @@ -90,7 +92,9 @@ $$
\begin{align}
\text{Layer 1:} & \\
x_0&=2 \\
p_0(x_0) &= 1 + 2x_0 + 3x_0^2 \\ p_0(2) &= 17 \\ p_0(-2) &= 9 \\\\
p_0(x_0) &= 1 + 2x_0 + 3x_0^2 \\
p_0(2) &= 17 \\
p_0(-2) &= 9 \\\\
\text{Layer 2:} & \\
x_1&=x_0^2 \\
p_1(x_1) &= 3 + 3x_1 \\
Expand All @@ -105,7 +109,7 @@ $$



In this manner, the prover can keep calculating for the whole domain. Then they would response the verifier query with the evaluations across layers for checking if an instance $a_i$ corresponding to the query is in the $\mathcal{L}\left(\mathcal{R}_{\text {consistent\_layers }}\right)$
In this manner, the prover can keep calculating for the whole domain. Then they would response the verifier query with the evaluations across layers for checking if an instance $a_i$ corresponding to the query is in the $\mathcal{L}\left(\mathcal{R}\_{\text {consistent\_layers }}\right)$

### Consistency check

Expand Down

0 comments on commit 07996e9

Please sign in to comment.