Encyclopedia Constants Constants Dimensions Dimensioned Quantity

ARTICLE 3 claims 3 models

Constants Dimensions Dimensioned Quantity

A dimensioned quantity pairs a number with its physical units, the way a recipe pairs a measure with its cup.

A quantity with its dimensions attached

A dimensioned quantity is a real number carrying a dimensional signature, which records the exponents of length, time, and mass. The speed of light, for instance, has signature [L¹T⁻¹M⁰]: one power of length, minus one power of time, no mass. This pairing is what lets an equation like E = mc² be checked for consistency before any numbers are plugged in. The framework's declaration DimensionedQuantity defines exactly this object: a value of type ℝ and a dimension made of three integers.

The classical idea is centuries old. Physicists have used dimensional analysis since Fourier's 1822 work on heat, and the Buckingham π theorem of 1914 formalized how to find dimensionless groups. The framework's contribution is to make the bookkeeping explicit and machine-checked. Its library defines the base dimensions, assigns signatures to c, ħ, and G, and provides operations for multiplying, dividing, and taking square roots of dimensioned quantities. These operations add or subtract the exponents, so multiplying a length by a time gives a quantity with signature [L¹T¹M⁰].

In Recognition Science, the fundamental units are the tick τ₀, the recognition length ℓ₀ = c·τ₀, and the golden ratio φ. The framework models physical constants as dimensioned quantities built from these primitives. The declaration itself is a definitional choice, not a theorem: it establishes the data structure, not any physical law. What it does is give the framework a way to state that ħ has dimensions [L²T⁻¹M¹] and G has [L³T⁻²M⁻¹], and to verify that Planck units have the right signatures.

The payoff is that dimensional consistency becomes a formal property. The library checks that the Planck length formula √(ħG/c³) has dimension [L¹], that the Planck time has [T¹], and that the Planck mass has [M¹]. These checks are documented, not proved as theorems about the world. They show the framework's internal arithmetic is coherent, which is a necessary condition for any further claim, but not evidence that the framework's constants match measured physics.

MODEL DimensionedQuantity · IndisputableMonolith/Constants/Dimensions.lean
/-- A dimensioned physical quantity with its value and dimensional signature. -/
structure DimensionedQuantity where
  value : ℝ
  dim : Dimension
MODEL dim_c · IndisputableMonolith/Constants/Dimensions.lean
/-- Speed of light dimension: [L¹T⁻¹M⁰] -/
def dim_c : Dimension := ⟨1, -1, 0⟩
MODEL dimensions_status · IndisputableMonolith/Constants/Dimensions.lean
/-- Summary of dimensional analysis module. -/
def dimensions_status : String :=
  "✓ Dimension structure [L, T, M] defined\n" ++
  "✓ Physical constant dimensions (c, ℏ, G) specified\n" ++
  "✓ Planck unit dimensions documented\n" ++
  "✓ τ₀ dimension documented as [T]\n" ++
  "✓ DimensionedQuantity algebra defined"

What this page does not claim

The declaration does not prove that any physical constant has a particular numerical value. The declaration does not establish that the framework's fundamental units exist in nature. The declaration does not derive the dimensions of c, ħ, or G; it assigns them by definition.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Constants/Dimensions.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND