diff options
| author | jeanpouget-abadie <jean.pougetabadie@gmail.com> | 2015-09-17 10:49:54 -0400 |
|---|---|---|
| committer | jeanpouget-abadie <jean.pougetabadie@gmail.com> | 2015-09-17 10:49:54 -0400 |
| commit | 1ddca2dd5d412326b45d581e633fce473007bff2 (patch) | |
| tree | 8e764ef9bbfdec4331fc59ce13a2d99bf3beedb9 | |
| parent | a2c06e671c50bab12ac5dd5731440842678d34f1 (diff) | |
| download | cascades-1ddca2dd5d412326b45d581e633fce473007bff2.tar.gz | |
adding extensions file
| -rw-r--r-- | notes/extensions.tex | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/notes/extensions.tex b/notes/extensions.tex new file mode 100644 index 0000000..0b48f83 --- /dev/null +++ b/notes/extensions.tex @@ -0,0 +1,32 @@ +\documentclass{article} +\usepackage{fullpage, amsmath, amssymb} + +\title{Extensions} + +\begin{document} + +\section{Gram matrix} + +In the ICML paper, we showed that the graph could be recovered as long as the +expected gram matrix $\mathcal{G}$ of observations had its restricted +eigenvalues lower bounded away from $0$. Recall that the gram matrix $G$ is +given by $X X^T$, where $X$ is an $n\times m$ matrix, where $n$ is the number of +measurements and $m$ is the number of nodes and if $X_i$ is a column vector +indicating the nodes infected at step $i$, then the rows of $X$ are given by +$X_i^T$. It follows that $$\mathcal{G} = \mathbb{E}[\sum_i X_i X_i^T]$$ + +Note that the indices of the sum are themselves random variables! Furthermore, +recall the definition of a restricted eigenvalue as $\|X_{S^c}\|_1 \leq 3 +\|X_S\|_1$. + +\subsection{Voter model} + +In the voter model, $\mathbb{P}[X_j^{t+1} = 1 | X^t] = \sum_{i=1}^m A_{i,j} +X^t_i$, where $A$ is the weighted adjacency matrix of the graph. Furthermore, +the model runs indefinitely until time $T$, a hyperparameter of the model. +Therefore, $\mathbb{E}[X_{n+1} | X_n] = A^T X_n$ and $\mathcal{G} = \sum_i A^i +\mathbb{E}[X_0 X_0^T] (A^T)^i$. In the case of the single-source model, +$\mathbb{E}[X_0X_0^T] = \frac{1}{m} I_m$ and it follows that $$\mathcal{G} = +\frac{1}{m} \sum_{i=1}^T (A A^T)^i$$ + +\end{document} |
