Total Eccentricity Calculator

total peripherality sum

CalculatorsFreeNo Signup
4.8(617 reviews)
All Tools

Loading tool...

About Total Eccentricity Calculator

A total eccentricity calculator computing ζ(G) = Σ ecc(v) where ecc(v) = max d(v,u). Sum of all vertex eccentricities. ζ measures total 'peripherality'. ζ(K_n) = n (all ecc=1). ζ(P_n) = n² - ⌊n/2⌋·⌈n/2⌉. Client-side.

Total Eccentricity Calculator Features

  • ζ(G)
  • Σ ecc(v)
  • Peripherality
  • Compact?
  • Common graphs
Total eccentricity ζ(G) = Σ ecc(v). Sum of maximum distances. ζ(K_n) = n (minimum: all vertices at distance 1). High ζ = spread out, peripheral graphs. Low ζ = compact. Simple but fundamental topological invariant.

How to Use

Select graph:

  • ζ: Total ecc.
  • ecc(v): Per vertex
  • Compact: Low ζ

Bounds

ζ ≥ n (K_n achieves minimum). ζ ≤ n·(n-1) (achieved by... no connected graph, theoretical max). For trees: ζ maximized by path. ζ(P_n) ≈ 3n²/4 for large n.

Average Eccentricity

Average ecc = ζ/n. For K_n: avg=1. For C_n: avg=⌊n/2⌋. Measures 'typical' peripherality. Low average = compact network. High = extended.

Step-by-Step Instructions

  1. 1Select graph.
  2. 2BFS from each vertex.
  3. 3Record ecc(v) = max distance.
  4. 4Sum all ecc(v).
  5. 5Divide by n for average.

Total Eccentricity Calculator — Frequently Asked Questions

What does ecc(v) measure?+

ecc(v) = max d(v,u) over all u. The farthest any vertex is from v. Low ecc = central. High ecc = peripheral. ecc(v) = 1 only in complete graphs.

ζ vs Wiener?+

W = Σ d(i,j): sum of ALL distances. ζ = Σ max(d(v,·)): sum of MAXIMUM distances per vertex. ζ is a cruder but faster measure. W ≥ ζ always (sum ≥ max).

How to compute efficiently?+

BFS from each vertex gives all distances in O(m) per vertex. Total: O(nm). Extract max per vertex. Sum. Very fast for sparse graphs.

Share this tool: