How is this calculated?
The math continuously tracks how strongly this post is connected to the rest of the network. Every tag forms a 2-way link. The base stats determine personal node strength, and the pie charts below show this node's share against its direct neighbours.
// 1. Base variables (floored at 1 to prevent zero-multiplication math errors)
$inbound = max(1, 3) = 3
$outbound = max(1, 3) = 3
// 2. Node Base Values (Local connection strength)
Base_Strength (PV) = $inbound * $outbound = 3 * 3 = 9
Base_Influence (IV) = $inbound / $outbound = 3 / 3 = 1
// 3. Exponential Network Values (accumulating 15 direct neighbours)
Network_Strength (CV) = Base_PV * (Neighbour_1_PV * Neighbour_2_PV * ...)
= 9 *
( 2 [Stanwell, Queensland] *
12 [Byfield, Queensland] *
210 [Rockhampton Region] *
4 [Central Queensland] *
4 [Alton Downs, Queensland] *
4 [Bajool, Queensland] *
1 [Baree, Queensland] *
4 [Fairy Bower, Queensland] *
1 [Gogango, Queensland] *
4 [Morinish, Queensland] *
1 [Nine Mile, Queensland] *
4 [Port Alma, Queensland] *
4 [Quest Rockhampton] *
1 [Alligator Creek] *
1 [Leichhardt Hotel, Rockhampton]
)
= 743.18M
Network_Influence (TV) = Base_IV * (Neighbour_1_IV * Neighbour_2_IV * ...)
= 1 *
( 2 [Stanwell, Queensland] *
1.33 [Byfield, Queensland] *
1.07 [Rockhampton Region] *
1 [Central Queensland] *
1 [Alton Downs, Queensland] *
1 [Bajool, Queensland] *
1 [Baree, Queensland] *
1 [Fairy Bower, Queensland] *
1 [Gogango, Queensland] *
1 [Morinish, Queensland] *
1 [Nine Mile, Queensland] *
1 [Port Alma, Queensland] *
1 [Quest Rockhampton] *
1 [Alligator Creek] *
1 [Leichhardt Hotel, Rockhampton]
)
= 2.86