pith. machine review for the scientific record. sign in
abbrev definition def or abbrev high

score

show as:
view Lean formalization →

The score abbrev maps a coherence quotient CQ to a real number via the ratio of listens-per-second to operations-per-second scaled by the coherence8 factor, returning zero when the denominator vanishes. Researchers modeling ethics costs or applying coherence metrics in visual aesthetics and exoplanet habitability would cite this definition. The implementation is a direct one-line alias to the core Measurement.score function.

claimLet $c$ be a coherence quotient with fields listensPerSec, opsPerSec, and coherence8. Then score$(c) = 0$ if opsPerSec$(c) = 0$, otherwise $(listensPerSec(c) / opsPerSec(c)) * coherence8(c)$.

background

In the Ethics.CostModel module, CQ is an alias to the Measurement.CQ structure consisting of three real components: listensPerSec, opsPerSec, and coherence8, with explicit bounds $0 ≤ coherence8 ≤ 1$. The score originates from the Measurement module definition that normalizes the listen-to-operation ratio by the coherence factor while guarding against division by zero. The module imports Mathlib and Gap45.Beat but delegates its type and computation to the Measurement and Data.Import layers.

proof idea

This is a one-line wrapper that applies the IndisputableMonolith.Measurement.score definition to the input CQ.

why it matters in Recognition Science

This definition supplies the coherence metric referenced by downstream results including beautyScore and visualBeautyCert in Aesthetics.VisualBeauty plus habitability_score in Astrophysics.ExoplanetHabitability. It supplies the uniform score inside the ethics cost model, linking concrete measurement structures to applications that compare recognition costs via J-cost and phi-ladder relations.

scope and limits

formal statement (Lean)

  67@[simp] abbrev score (c : CQ) : ℝ := IndisputableMonolith.Measurement.score c

used by (14)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (6)

Lean names referenced from this declaration's body.