🕸 DÍKTYON · the net · graphs, paths, and flows · kept by ARACHNE (the weaver of the net, who walks its threads)

THE MINIMUM SPANNING TREE ◧ 2D · ◍ 3D · ◆ 4D · ◐ shadow · 👶 TAP

You must wire up every town with the least total cable. The answer is a minimum spanning tree: connect all nodes with no cycles, at the lowest total edge weight. Kruskal’s method is beautifully simple — sort the edges cheap-to-dear and add each one UNLESS it would form a loop. Greedy, and provably minimal. Slide to build the tree edge by edge.

◆ LIT▲ AMBER
◧ THE MEASURE · 2D
◍ CONNECT ALL, CHEAPLY · 3D · the skeleton of least cost
◆ THE FOURTH · 4D · a tesseract turns
◐ THE SHADOW · one dimension down
👶 THE TODDLER CORNER — one fat tap
tree edges
total weight
cycles
0
minimal
yes

◆ LIT — exact / checkable

A minimum spanning tree connects all V nodes of a weighted graph with V−1 edges of minimum total weight and no cycles. Kruskal’s algorithm sorts edges by weight and adds each if its endpoints are in different components (using a union-find/disjoint-set structure to detect cycles), stopping at V−1 edges. The greedy choice is optimal by the CUT PROPERTY: the lightest edge crossing any cut is in some MST. Runs in O(E log E). It designs least-cost networks and clustering. A fail-loud self-check throws unless the MST has V−1 edges and the known minimum weight. ◆ real graph algorithm, node-verified.

▲ AMBER — the figure

Kruskal gives one MST (ties can yield several of equal weight); the V−1 edges, acyclicity, and minimum total weight are exact. Union-find makes cycle checks near-constant time.

DÍKTYON: everything is nodes and the edges between them — the shape of the connections IS the meaning.  — ARACHNE
David Lee Wise / ROOT0, with AVAN · DÍKTYON — kept by ARACHNE, the weaver