layout | title | header-includes |
---|---|---|
post | Network Effects And Cascading Behaviour | [\usepackage{amsmath}] |
In this section, we study how a infection propagates through a network. We will look into two classed of model, namely decision based models and probabilistic models. But first lets look at some terminology used throughout the post.
Terminology
In decision based models, every nodes independently decides whether to adopt the contagion or not depending upon its neighbors. The decision is modelled as a two-player coordination game between user and its neighbor and related payoffs. Hence a node with degree $$k$$ plays $$k$$ such games to decide its payoff and correspondingly its behavior.
There are two contagions $$A$$ and $$B$$ in the network and initially every node has behavior $$B$$. Every node can have only one behavior out of the two. The payoff matrix is given as:
A | B | |
---|---|---|
A | a | 0 |
B | 0 | b |
Lets analyze a node with d neighbors, and let p be the fraction of nodes who have adopted $$A$$. Hence the payoff for $$A$$ is $$apd$$ and payoff for $$B$$ is $$b(1-p)d$$. Hence the node adopts behavior $$A$$ if $$apd > b(1-p)d \implies p > \frac{b}{a+b} = q$$(threshold)
Key Insights:
k-core decomposition: biggest connected subgraph where every node has at least degree k (iteratively remove nodes with degree less than k)
There are two contagions $$A$$ and $$B$$ in the network and initially every node has behavior $$B$$. In this case a node can have both behavior $$A$$ and $$B$$ at a total cost of $$c$$ (over all interactions). The payoff matrix is given as:
A | B | AB | |
---|---|---|---|
A | a | 0 | a |
B | 0 | b | b |
AB | a | b | max(a,b) |
Payoffs for $$w$$: $$A: a$$, $$B: 1$$, $$AB: a+1-c$$
Payoffs for $$w$$: $$A: a$$, $$B: 1$$, $$AB: max(a, 1) + 1 -c$$