pith. sign in
lemma

path_action_nil

proved
show as:
module
IndisputableMonolith.Modal.Actualization
domain
Modal
line
134 · github
papers citing
none yet

plain-language theorem explainer

The lemma establishes that the action of the empty path is zero in the Recognition Science modal framework. Modelers of minimal configurations or boundary conditions in the phi-ladder would reference this base case when initializing path sums. The proof is a direct reflexivity application on the definition of PathAction.

Claim. For the empty path, the path action satisfies $C[[]] = 0$, where $C$ is the accumulated J-cost along the path.

background

PathAction is defined by cases on a list of Config values: the empty list returns 0, a singleton returns J of its value, and longer lists sum J terms plus transition costs. This construction supplies the Recognition Science analogue of the classical action functional. The surrounding module Actualization imports Possibility and treats paths as sequences that may or may not actualize under the J-cost metric. Upstream, the J-cost itself is taken from ObserverForcing.cost, which extracts the recognition-event cost, and from MultiplicativeRecognizerL4.cost, which derives the comparator cost on positive ratios.

proof idea

One-line wrapper that applies reflexivity to the base case of the PathAction definition.

why it matters

The result supplies the zero starting point required by the inductive clauses of PathAction and therefore supports every_config_actualizes and related statements inside the Actualization module. It aligns with the J-uniqueness fixed point (T5) and the Recognition Composition Law by guaranteeing that the empty sum contributes nothing to total cost. No open scaffolding is closed here; the lemma is a direct consequence of the definition.

Switch to Lean above to see the machine-checked source, dependencies, and usage graph.