Optimization mechanism

From HandWiki
Short description: Network science algorithm


In network science, the optimization mechanism is a network growth algorithm, which randomly places new nodes in the system, and connects them to the existing nodes based on a cost-benefit analysis. Depending on the parameters used in the optimization mechanism, the algorithm can build three types of networks: a star network, a random network, and a scale-free network. Optimization mechanism[1] is thought to be the underlying mechanism in several real networks, such as transportation networks, power grid, router networks, the network of highways, etc.

General Properties

The optimization mechanism is a model with growth, in which preferential attachment is valid under certain assumptions. As opposed to the copying model, the optimization model uses global information about the network, to connect the newly entering nodes to the existing ones, thus reducing the amount of randomness in the process. The model's mechanism is based on a cost-benefit comparison, that is for each entering node 'i', the algorithm calculates the net benefit (benefits minus costs) of connecting 'i' to each existing node, and connects node 'i' to the node which gives the highest net benefit.[2]

Description

The costs and benefits in the optimization models can generally be simplified into two attributes: the distance between the new node, and the existing one; and the distance of the existing node from the central node. Thus the goal function can be written in the following form:

[math]\displaystyle{ C_i=min_j[\delta*d_{ij}+h_j] }[/math]

  • where [math]\displaystyle{ C_i }[/math] stands for the minimal cost of attaching node 'i' to an existing node
  • [math]\displaystyle{ d_{ij} }[/math] denotes the distance between node 'i' and 'j'
  • [math]\displaystyle{ h_j }[/math] represents the distance of node 'j' from the central node
  • [math]\displaystyle{ \delta }[/math] is a parameter, that determines the weight of the individual distance compared to the distance to the central node, and thus it varies across different settings.

In a highway network setting - where cities are nodes and links are highways - [math]\displaystyle{ d_{ij} }[/math] would be the physical distance between cities, and [math]\displaystyle{ h_j }[/math] would be the distance from the capital (or from the central city of the region). The value of [math]\displaystyle{ \delta }[/math] determines the type of the network built by the optimization mechanism.[2]

Star Network

The optimization mechanism results in a star network, whenever [math]\displaystyle{ \delta\lt (1/2)^{1/2} }[/math]. A unique feature of the star network is that most of the newly added nodes will connect to the central node regardless of the distance. One can think of a star network as a network in which the costs to establish a new link are negligible compared to the benefit of being directly connected to the central node. Star networks are rarely observed in reality.

Random Network

A random network is built using the optimization method when [math]\displaystyle{ \delta\gt N^{1/2} }[/math]. In case of a high enough [math]\displaystyle{ \delta }[/math], the costs to establish a new link are enormously high, compared to the benefit of being closely connected to the central node. As a result, most of the new nodes will connect to the closest node available. A real life example is the power grid network, where the cost of building a power line is high, and the benefits of being directly connected to the power source is negligible.

Scale-free Network

[math]\displaystyle{ 4\lt \delta\lt N^{1/2} }[/math]. If [math]\displaystyle{ \delta }[/math] is neither too high, nor too low, the mechanism results in a scale-free network, characterised by preferential attachment. The newly added nodes tend to connect to the larger nodes, but sometimes they may connect to middle-size nodes, or even small ones, depending on their distance. Most of the real-life networks characterized by an underlying optimization mechanism are scale-free networks, such as the router network and the highway network.

References

  1. Z. Kigrave, iBook, Page 136 (24 July 2017). "Optimization mechanism". https://page-audit.ru/wiki/OptimizationMech. 
  2. 2.0 2.1 The Network Science Book Project , iBook, Page 8