Skip to content

Path

Prime #
1055
Origin domain
Mathematics
Subdomain
graph theory → Mathematics

Core Idea

A path is an ordered, adjacency-honouring sequence of edges connecting one node to another through a relational substrate. It is a committed realization of one connection — a concrete route, as opposed to the network's manifold of what could connect.

How would you explain it like I'm…

The Trail You Walked

A path is the actual trail you take to get from where you are to where you want to go, step by step. The whole park has lots of trails you could take, but a path is the one you really walked. It has a start, an end, and all the spots in between.

One Real Route

A path is an ordered chain of steps that connects one point to another by hopping along links that actually touch. A map shows everything that could connect to everything, but a path is one real route picked out of that map. Because it is a real route, you can ask how long it is, which step is the slowest, and what other way you could go if one link breaks. The map alone cannot answer those, because it only tells you what is possible, not which trip you took.

Committed Traversal

A Path is a sequence of edges through a relational structure that connects one node to another by an ordered, traversable chain. The minimum it needs is two things: an edge-like substrate (links, adjacencies, transitions, citations) and an ordering that says this, then that, until arrival. Everything else, directed or not, weighted or not, shortest or any-old, is a refinement of the same shape. What makes a path its own object, separate from the network it lives in, is the shift from capacity to route: a network says what can connect, a path is one committed realization of such a connection. Reifying the trajectory as an object is exactly what lets you ask its cost, its bottleneck, or its alternative if an edge is cut.

 

A Path is a sequence of edges through a relational structure connecting one node to another by an ordered, traversable chain. Structurally it needs only two pieces: a relational substrate, something edge-like such as adjacencies, transitions, links, or citations, and an ordering that imposes this-then-that until arrival. Directed or undirected, weighted or unweighted, shortest or arbitrary, deterministic or stochastic are all refinements of that single shape; at bottom a path is a committed traversal that honours the substrate's adjacency. Its distinctness from the network comes from the shift from capacity to route: a network is the manifold of possibility, a path is one concrete realized trajectory through it. Reifying the trajectory as an object makes new questions askable, the route's cost, its shortest or safest alternative, its bottleneck edge, what remains if an edge is severed. It also exports a richer vocabulary than node or edge alone: length, origin, destination, waypoints, edge costs, and direction. Once a system models its trajectories as paths, shortest-path search, capacity routing, and attribution along a chain all become expressible in one shared graph-theoretic formalism, which is why the same word describes a supply route, a transmission chain, a procedural escalation, and a sequence of inference steps.

Broad Use

  • Graph theory: paths, walks, and geodesics, with shortest-path algorithms foundational.
  • Computing and networking: routing paths through the internet, call stacks, execution traces, query plans.
  • Logistics: every dispatched route through a road or distribution network, optimised against cost and capacity.
  • Epidemiology: chains of transmission through the contact network, reconstructed by contact tracing.
  • Law: the appellate path through a court hierarchy; the chain from arrest to conviction.
  • Causal reasoning: a directed cause-to-effect path through a structural graph, blocked to compute interventions.
  • Search and reasoning: a solution path from initial state to goal in a game tree, proof search, or planner.

Clarity

It separates the possibility-structure (network) from the selected trajectory (path), keeping distinct three questions — does a route exist, can the system support routes, which route was chosen — each with a different remedy.

Manages Complexity

A path is a one-dimensional projection of a high-dimensional network, so reasoning about the selected trajectory exposes only the edges traversed, never the exponential space of all routes.

Abstract Reasoning

It licenses reasoning about reachability, cost, the bottleneck (weakest link), alternative routing under a cut, and path-dependence — outcomes that hinge on which route was taken, not just the endpoints.

Knowledge Transfer

  • Software: contact-tracing paths transfer to defect-tracing on the version graph — instrument high-traversal edges, sever risky ones.
  • Audit: causal-path analysis transfers to audit-trail design, tracing a consequential output back to its responsible step.
  • Organizations: routing's lesson that each node compute its next hop locally transfers to robust distributed responsibility.

Example

A package routes factory → port → ship → port → customs → distribution centre → van, each node a waypoint where it can be lost; the interventions are identical to packet routing — find the bottleneck edge, precompute an edge-disjoint alternative.

Relationships to Other Primes

One-hop neighborhood: parents above, mutual partners to the right, children below.Pathcomposition: NetworkNetwork

Parents (1) — more general patterns this builds on

  • Path presupposes Network — The file: 'A path is one COMMITTED realization of a connection through the underlying relational substrate (a network)... the path's leverage comes entirely from holding the realized route apart from the possibility structure.' A path presupposes a network to traverse.

Path to root: PathNetworkReservoir-Flux Network

Not to Be Confused With

  • Path is not a Network because a network is the manifold of what could connect, whereas a path is one committed realization of a connection — capacity fixes versus routing fixes.
  • Path is not a Markov Process because a Markov process is a stochastic generative rule for next states, whereas a path is a single realized ordered sequence carrying no transition law.
  • Path is not Pareto Efficiency because a path need not be shortest or best — "a route exists" and "the optimal route" are different questions.