Skip to content

Commit 951e0c7

Browse files
authored
Merge pull request #802 from tanishqkumar/fix-equals-typo-code-and-data
Typo fix: swap EQUAL and \neg EQUAL in size hierarchy proof
2 parents 06c83bc + 14257be commit 951e0c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lec_04_code_and_data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ f_i(x) = \begin{cases} b & x=x^* \\ f_{i-1}(x) & x \neq x^*
229229
$$
230230
or in other words
231231
$$
232-
f_i(x) = f_{i-1}(x) \wedge EQUAL(x^*,x) \; \vee \; b \wedge \neg EQUAL(x^*,x)
232+
f_i(x) = f_{i-1}(x) \wedge \neg EQUAL(x^*,x) \; \vee \; b \wedge EQUAL(x^*,x)
233233
$$
234234
where $EQUAL:\{0,1\}^{2n} \rightarrow \{0,1\}$ is the function that maps $x,x' \in \{0,1\}^n$ to $1$ if they are equal and to $0$ otherwise.
235235
Since (by our choice of $i$), $f_{i-1}$ can be computed using at most $s$ gates and (as can be easily verified) that $EQUAL \in SIZE_n(9n)$,

0 commit comments

Comments
 (0)