pith. machine review for the scientific record. sign in
lemma proved wrapper high

contDiffTwo_differentiable

show as:
view Lean formalization →

A real-valued function that is twice continuously differentiable is differentiable. Researchers reducing regularity assumptions in d'Alembert solutions for Recognition Science T5 J-uniqueness cite this when stripping explicit C² seams. The proof is a one-line wrapper that extracts differentiability directly from the ContDiff hypothesis.

claimIf $f : ℝ → ℝ$ is twice continuously differentiable, then $f$ is differentiable.

background

The ContDiffReduction module removes a central portion of the explicit T5 regularity seam. It shows that a ContDiff ℝ 2 d'Alembert solution satisfies the ODE H'' = H, with the Recognition Composition Law plus normalization forcing reciprocity. ContDiff ℝ 2 Hf denotes twice continuous differentiability of Hf : ℝ → ℝ.

proof idea

The proof is a one-line wrapper that applies the differentiability extraction from ContDiff ℝ 2 via h_diff.differentiable, using a decidable check that the order 2 is nonzero.

why it matters in Recognition Science

This lemma feeds dAlembert_cosh_solution_of_contDiff (C² d'Alembert solutions equal cosh by calibration) and dAlembert_first_deriv_of_contDiff. It advances the T5 forcing chain by removing regularity seams, consistent with J-uniqueness and the eight-tick octave.

scope and limits

Lean usage

have h_diff : Differentiable ℝ Hf := contDiffTwo_differentiable h_contDiff

formal statement (Lean)

  27private lemma contDiffTwo_differentiable {Hf : ℝ → ℝ}
  28    (h_diff : ContDiff ℝ 2 Hf) : Differentiable ℝ Hf := by

proof body

One-line wrapper that applies exact.

  29  exact h_diff.differentiable (by decide : (2 : WithTop ℕ∞) ≠ 0)
  30

used by (2)

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