Pith. 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. Your answer will appear below.
confidence: high in recognition cached

The theorem cos_satisfies_continuous_neg asserts that the cosine function meets a key regularity condition in the negative branch of the d'Alembert functional equation.

(1) In plain English: it states that cosine is continuous whenever it satisfies the second-derivative condition deriv(deriv H) = -H. The proof simply invokes the built-in continuity of cos, ignoring the antecedent.

(2) In Recognition Science this matters because the cosine branch (H'' = -H with H''(0) = -1) is forced as the unique angle-coupling function, parallel to the cosh branch for the cost functional J(x). Continuity is axiom Aθ2 and is required before the ODE uniqueness and d'Alembert-to-ODE steps can be applied.

(3) The formal statement is theorem cos_satisfies_continuous_neg : ode_regularity_continuous_hypothesis_neg Real.cos := by intro _; exact Real.continuous_cos. The predicate ode_regularity_continuous_hypothesis_neg is defined as (∀ t, deriv (deriv H) t = -H t) → Continuous H; the theorem supplies cos as a witness by discharging the implication with the known fact that cos is continuous.

(4) Visible dependencies in the supplied source include the definition of ode_regularity_continuous_hypothesis_neg, the companion theorems cos_satisfies_bootstrap_neg and cos_satisfies_differentiable_neg, and the use of this result inside ode_cos_uniqueness and dAlembert_cos_solution. It also relies on the imported Real.continuous_cos and the even-derivative lemma from the Cost module.

(5) This declaration does not prove the full d'Alembert cosine solution, the calibration step H''(0) = -1, or the master theorem THEOREM_angle_coupling_rigidity; those require the functional equation, normalization, and the complete regularity bundle.

cited recognition theorems

outside recognition

Aspects Recognition does not yet address:

  • Complete proof body of THEOREM_angle_coupling_rigidity (source is truncated after the axiom structure).

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.