I have an undirected network. I want to have a measure which tells me how much adding a certain edge changes the network.
Please have a look at this example:
Here, the black edges represent the original network. It is obvious that by adding the green edge, the network structure will not change a lot. However, if I add the red edge, the network changes significantly.
Are there known methods to study such changes?
I was thinking about a measure $m(N_{orig},N_{new})$ (where $N_{orig}$ and $N_{new}$ stands for the original and modified network, respectivly) that takes into account the distance $d$ between all vertices:
$$ m(N_{orig},N_{new})=\sum_{\forall (V_i,V_j)} \left(d_{orig}(V_i,V_j) - d_{new}(V_i,V_j) \right) $$
where $V_i$ are the vertices of the network. In the example network above, $m(N_{orig},N_{black})=2$ and $m(N_{orig},N_{red})=90$. It is similar to the difference of the average path length, as indicated by DavidV in the comments.
This would be great, but the network distance is expensive to calculate for large networks (roughly $\mathcal{O}(V^2\cdot\log(V)+V\cdot E)$ for the Johnson's algorithm or $\mathcal{O}(V^3)$ for the Floyd–Warshall algorithm). My network has V~=5.000 and E~=900.000. As I want to calculate many added edges, this measure seems to be too expensive for me.
I'm happy about every suggestion! Thanks


Have you considered the vertex-connectivity of a graph?
It equals the minimum number of vertices to remove before you can hope disconnecting the graph in separate components. For example, for trees, the vertex-connectivity equals $1$, because removing any node will necessarily disconnect the graph.
It is polynomial time computable, which is interesting.
In your example, if you remove the middle node, you disconnect the graph, so it has vertex-connectivity $1$. Adding the green edge clearly does not affect the connectivity, but adding the red one does, as deleting the middle node no longer disconnects the graph with this extra edge. Therefore, this could be a relevant measure for your problem.
Edge-connectivity is defined in the same fashion and could also be used.