1. What the declaration says in plain English
The theorem FApply_smul proves that the "almost-product operator" (denoted as $F$) commutes with scalar multiplication. In mathematical terms, if you scale an input vector $v$ by a real number $c$ and then apply the operator $F$, it is identical to applying $F$ to $v$ first and then scaling the result by $c$. This establishes that $F$ is homogeneous of degree 1.
2. Why it matters in Recognition Science
Within the Recognition Science framework, finite-dimensional operator algebras arise from the underlying cost functional. The operator $F$, defined as $F = 2P - I$ (where $P$ is a normalized projector), is the algebraic foundation for the "golden operator" and the broader "metallic family" of operators. Establishing the linear properties of $F$ is structurally necessary to ensure it behaves as a well-defined linear operator on the vector space, which is a prerequisite for its use in describing symmetries, automorphic forms, or the emergence of physical structures.
3. How to read the formal statement
{n : ℕ}: The dimension of the underlying vector space.(lam : ℝ): A real scalar parameter $\lambda$.(hInv : Fin n → Fin n → ℝ): The inverse metric kernel $h^{-1}$.(β : Vec n): A defining covector $\beta$.(c : ℝ): The real scalar multiplier.(v : Vec n): The input vector.FApply lam hInv β (c • v) = c • FApply lam hInv β v: The core equality asserting that applying $F$ to $c \cdot v$ yields $c \cdot F(v)$, where•represents scalar multiplication.
4. Visible dependencies in the supplied source
The proof is a concise algebraic verification that relies on:
- The definition of FApply, which defines the operator in terms of the projector $P$.
- The antecedent theorem PApply_smul, which proves the exact same homogeneity property for the projector $P$.
- The proof expands the definition to vector components (
ext i), substitutes the known behavior of $P$, and uses basic ring algebra (mul_command theringtactic) to show both sides match.
5. What this declaration does not prove
This specific declaration only proves homogeneity (scalar multiplication). It does not prove that $F$ is additive across vector addition; that property is handled separately by FApply_add. It also does not prove the defining geometric property of an almost-product operator, which is that it squares to the identity ($F^2 = I$); that requires FApply_square. Finally, it makes no claims about specific physical dimensions (like $D=3$ or spacetime) or fundamental constants.