pith. machine review for the scientific record. sign in
theorem proved term proof high

four_pi_gt

show as:
view Lean formalization →

12.56 < 4π holds over the reals. Interval-arithmetic code in numerics cites this to anchor the lower bound when constructing fourPiInterval. The proof obtains 3.14 < π from Mathlib and closes the target inequality by linear arithmetic.

claim$12.56 < 4π$

background

The module supplies rigorous interval bounds on π by importing Mathlib's proven inequalities, including Real.pi_gt_d2 which asserts 3.14 < π. Local conventions treat these bounds as the foundation for intervals on π and its powers, with no additional Recognition Science primitives required. The setting is purely numerical verification to support downstream interval membership proofs.

proof idea

The proof is a short tactic sequence. It obtains the hypothesis 3.14 < π via Real.pi_gt_d2, then applies linarith to deduce 12.56 < 4π.

why it matters in Recognition Science

The result is invoked directly by four_pi_in_interval to establish membership of 4π in fourPiInterval. It supplies a concrete numerical anchor inside the numerics layer that feeds interval arithmetic for constants appearing in mass formulas and related calculations. No open questions or scaffolding are involved.

scope and limits

Lean usage

have h := four_pi_gt

formal statement (Lean)

  78theorem four_pi_gt : (12.56 : ℝ) < 4 * pi := by

proof body

Term-mode proof.

  79  have h := Real.pi_gt_d2  -- 3.14 < π
  80  linarith
  81
  82/-- 4π < 12.6 -/

used by (1)

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