pith. machine review for the scientific record. sign in

Explain the Lean theorem `cos_satisfies_continuous_neg` in module `IndisputableMonolith.Measurement.RecognitionAngle.AngleFunctionalEquation`. Write for an educated reader who knows science and programming but may not know Lean. Cover: (1) what the declaration says in plain English, (2) why it matters in Recognition Science, (3) how to read the formal statement, (4) visible dependencies or certificates in the supplied source, and (5) what this declaration does not prove. Cite only declarations present in the supplied Recognition source.

Big AI job. Grok 4.3 reads the canon and writes a Lean-grounded derivation; usually 20 seconds to 2 minutes. The page will refresh to your answer when it’s ready.
confidence: high in recognition cached

Explanation of cos_satisfies_continuous_neg

(1) What the declaration says in plain English

The theorem cos_satisfies_continuous_neg asserts that the real cosine function satisfies the regularity hypothesis ode_regularity_continuous_hypothesis_neg. In plain terms, it states that cosine is continuous. The hypothesis type is defined to say "if a function obeys the ODE f'' = -f, then it is continuous"; the proof simply supplies the known fact that cosine is continuous (ignoring the antecedent via intro _).

(2) Why it matters in Recognition Science

This declaration supplies one piece of the regularity infrastructure needed to prove that cosine is the unique solution to the d'Alembert functional equation under negative second-derivative calibration at zero. That calibration selects the cosine branch for angle coupling, which is the "Angle T5" counterpart to the cosh branch used for the cost functional J(x) in the parallel Cost module. It contributes to forcing the angle coupling function to be exactly cos once the axioms Aθ1–Aθ4 are imposed.

(3) How to read the formal statement

The declaration is:

theorem cos_satisfies_continuous_neg : ode_regularity_continuous_hypothesis_neg Real.cos := by
  intro _
  exact Real.continuous_cos

The supporting definition is:

def ode_regularity_continuous_hypothesis_neg (H : ℝ → ℝ) : Prop :=
  (∀ t, deriv (deriv H) t = -H t) → Continuous H

Thus the theorem claims that cosine belongs to this Prop. The proof is a one-line appeal to the standard library fact that cosine is continuous.

(4) Visible dependencies or certificates in the supplied source

(5) What this declaration does not prove

It does not establish ODE uniqueness, the passage from d'Alembert to the ODE, or the master rigidity result. Those are proved separately by ode_cos_uniqueness_contdiff, dAlembert_cos_solution, and THEOREM_angle_coupling_rigidity. It also supplies no physical interpretation or link to other RS constants.

cited recognition theorems

outside recognition

Aspects Recognition does not yet address:

  • Physical interpretation of angle coupling beyond the module docstring.
  • Connection to the full Universal Forcing chain or T5 cost theorem in other modules.

recognition modules consulted

The Recognition library is at github.com/jonwashburn/shape-of-logic. The model is restricted to the supplied Lean source and instructed not to invent theorem names. Treat output as a starting point, not a verified proof.