-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sketched how entropy decrement => entropic PFR
- Loading branch information
Showing
5 changed files
with
104 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/-! | ||
# The 100% version of entropic PFR | ||
Here we show entropic PFR in the case of doubling constant zero. | ||
-/ | ||
|
||
/-- If $d[X_1;X_2]=0$, then there exists a subgroup $H \leq G$ such that $d[X_1;U_H] = d[X_2;U_H] = 0$. -/ | ||
theorem dist_eq_zero_iff : 0 = 1 := by sorry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
\chapter{The 100\% version of PFR} | ||
|
||
\begin{lemma}\label{lem:100pc} | ||
\uses{ruz-dist-def} | ||
\lean{dist_eq_zero_iff} | ||
Suppose that $X_1,X_2$ are $G$-valued random variables such that | ||
$d[X_1;X_2]=0$. Then there exists a subgroup $H \leq G$ such that $d[X_1;U_H] = d[X_2;U_H] = 0$. | ||
\end{lemma} | ||
|
||
\begin{proof} {\bf This proof will need to be deconstructed further, for instance by reading the proof in the cited paper.} | ||
By the triangle inequality, $\dist{X_1}{X_1} = 0$, and so (since $G=\F_2^n$) we have $\dist{X_1}{-X_1} = 0$. By Theorem 1.11(i) of {\tt https://arxiv.org/abs/0906.4387} it follows that there exists a subgroup $H$ with $\dist{X_1}{U_H} = 0$. | ||
Then $\dist{X_2}{U_H}=0$ follows by the triangle inequality. | ||
\end{proof} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters