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, 15) = 15
$outbound = max(1, 10) = 10
// 2. Node Base Values (Local connection strength)
Base_Strength (PV) = $inbound * $outbound = 15 * 10 = 150
Base_Influence (IV) = $inbound / $outbound = 15 / 10 = 1.5
// 3. Exponential Network Values (accumulating 16 direct neighbours)
Network_Strength (CV) = Base_PV * (Neighbour_1_PV * Neighbour_2_PV * ...)
= 150 *
( 6 [Ellendale] *
42 [Kerrville] *
4 [Annesdale] *
4 [Capleville, Tennessee] *
1 [Eads, Tennessee] *
4 [Ellendale, Tennessee] *
4 [Kerrville, Tennessee] *
1 [Cemeteries in Shelby County, Tennessee] *
1 [Firefighting in Shelby County, Tennessee] *
1 [Geography of Shelby County, Tennessee] *
1 [History of Shelby County, Tennessee] *
1 [Nature of Shelby County, Tennessee] *
1 [1325 Lamar Avenue] *
1 [Capleville] *
1 [Northaven] *
1 [Signs in Shelby County, Tennessee]
)
= 9.68M
Network_Influence (TV) = Base_IV * (Neighbour_1_IV * Neighbour_2_IV * ...)
= 1.5 *
( 1.5 [Ellendale] *
1.17 [Kerrville] *
1 [Annesdale] *
1 [Capleville, Tennessee] *
1 [Eads, Tennessee] *
1 [Ellendale, Tennessee] *
1 [Kerrville, Tennessee] *
1 [Cemeteries in Shelby County, Tennessee] *
1 [Firefighting in Shelby County, Tennessee] *
1 [Geography of Shelby County, Tennessee] *
1 [History of Shelby County, Tennessee] *
1 [Nature of Shelby County, Tennessee] *
1 [1325 Lamar Avenue] *
1 [Capleville] *
1 [Northaven] *
1 [Signs in Shelby County, Tennessee]
)
= 2.63