Cross Cutting Relationship¶
Core Idea¶
The geometry of intersection between two features encodes their relative temporal order: a feature that interrupts, displaces, or overprints another must be younger than the feature it cuts — extracting time from space without observing the events unfold.
How would you explain it like I'm…
What Crosses Came Later
Reading Order From Cuts
Time From The Geometry
Broad Use¶
- Geology: a dike cutting a fault is younger than the fault; an unconformity truncating folded strata postdates the folding.
- Archaeology: a pit cut into a floor postdates the floor — formalized in the Harris matrix.
- Software: a patch modifying a line is later than the line;
git blame, three-way merge, and file-history walks operationalize the inference. - Forensics: overlapping footprints, blood spatter, and intersecting glass fractures order events from a static scene.
- Cosmology: crater-on-crater intersections plus crater counts produce relative-age maps on undated surfaces.
- Palaeography: corrections and marginal glosses fitting around an earlier stain, and palimpsest readings, recover order from overprinting.
Clarity¶
Separates how do we know which came first? (a geometric question answerable from a snapshot) from what happened? (which requires direct observation), and tells the analyst when the geometry is itself the record.
Manages Complexity¶
Compresses a dating problem into a uniform operation: identify the substrate, enumerate intersections, apply the rule, build a partial order combinable with independent dating.
Abstract Reasoning¶
Supports consistency checking — a detected cycle (A cuts B, B cuts C, C cuts A) signals later reworking or a misread, because the rule is acyclic by construction — and audits whether the substrate preserved the geometry faithfully.
Knowledge Transfer¶
- Geology → archaeology: the rule was imported, not reinvented, as Harris-matrix stratigraphy.
- Geology → software: diff-overprints-line yields a partial order; merge-conflict detection is the acyclicity check.
- Geology → forensics: glass-fracture analysis (later fractures terminate at earlier ones) reconstructs event sequences.
Example¶
An igneous dike cutting straight across both faulted sandstone beds and the fault plane, without itself being offset, yields the partial order sandstone → fault → dike — recovered entirely from the static outcrop geometry.
Relationships to Other Abstractions¶
Current abstraction Cross Cutting Relationship Prime
Parents (1) — more general patterns this builds on
-
Cross Cutting Relationship is a kind of Geometric Chronology Prime
Cross-cutting relationship is geometric chronology specialized to the intersection rule that an interrupting or overprinting feature is younger than the feature it cuts.
Hierarchy path (1) — routes to 1 parentless root
- Cross Cutting Relationship → Geometric Chronology → Time
Not to Be Confused With¶
- Cross-Cutting Relationship is not Interpretation because cross-cutting is a mechanical, rule-governed inference (the cutter is younger, full stop), whereas interpretation reads contestable meaning into a sign.
- Cross-Cutting Relationship is not Causality because it licenses only the temporal claim (the cutter postdates the cut), whereas causality claims mechanism; order is not cause.
- Cross-Cutting Relationship is not Provenance because it recovers order from the geometry itself (precisely when no record survives), whereas provenance traces history from records.