Encyclopedia Chemistry Chemistry Bond Angles Angle Bias

ARTICLE 2 claims 2 theorems

Chemistry Bond Angles Angle Bias

A small formal number, 1 minus the reciprocal of the golden ratio, marks how far a tetrahedral bond angle leans away from a straight line.

The bias proxy

In chemistry, the tetrahedral bond angle of 109.47 degrees, with cosine equal to -1/3, is the angle four equivalent bonds around a central atom take to spread out evenly in three dimensions. Methane is the textbook example. The angle emerges from minimizing electrostatic repulsion between electron pairs while preserving bond strength, and the general formula for n equivalent bonds is cos(θ) = -1/(n-1). For n=4, that gives arccos(-1/3), about 109.47 degrees. The same formula yields 180 degrees for two bonds, 120 degrees for three, and 90 degrees for six.

Within the Recognition Science framework, the declaration angle_bias establishes a smaller, more specific fact. It proves that a dimensionless proxy called tetra_bias, defined as 1 - 1/φ where φ is the golden ratio (about 1.618), is strictly positive. In plain terms, the number 1 - 1/φ is greater than zero. Since φ is greater than 1, its reciprocal is less than 1, so subtracting it from 1 leaves a positive remainder, roughly 0.382. The framework's docstring describes this proxy as capturing the deviation of the tetrahedral angle from linearity, a way to quantify how far a bent geometry sits from a straight line.

The declaration itself is a theorem in the framework's machine-checked library of formal theorems. It does not, by itself, derive the tetrahedral angle, predict water's 104.5 degree bond angle, or prove any physical law. Those appear elsewhere in the same file as definitions and predictions, each with its own status. The angle_bias theorem only asserts the positivity of the proxy number. The framework's broader chemistry module also defines the optimal bond cosine formula and proves specific values for n=2, 3, 4, and 6, and it lists falsification criteria for the tetrahedral angle derivation, such as whether cos(θ) truly equals -1/3 for sp³ carbon. None of those broader claims are established by angle_bias alone.

What the reader can take from this declaration is a small, exact piece of the framework's structure: a defined quantity that is provably positive. It is a building block, not a conclusion about real molecules. The framework's own notes mark the water and ammonia angle predictions as approximate corrections, and the octahedral case as a known mismatch where the formula gives -1/5 but real octahedral geometry uses 90 degrees. The angle_bias theorem sits at the level of arithmetic and the golden ratio, not at the level of measured bond angles.

THEOREM angle_bias · IndisputableMonolith/Chemistry/BondAngles.lean
/-- The bias proxy is strictly positive (since φ>1 ⇒ 1/φ<1). -/
theorem angle_bias : 0 < tetra_bias := by
  dsimp [tetra_bias]
  have hφ : 1 < Constants.phi := Constants.one_lt_phi
  have hφpos : 0 < Constants.phi := lt_trans (by norm_num) hφ
  have h_inv_lt : (1 / Constants.phi) < 1 := by
    rw [div_lt_one hφpos]
    exact hφ
  exact sub_pos.mpr h_inv_lt
THEOREM tetra_cos_eq · IndisputableMonolith/Chemistry/BondAngles.lean
/-- The tetrahedral cosine is -1/3. -/
theorem tetra_cos_eq : Real.cos tetrahedralAngleRadians = -1/3 := by
  rw [tetrahedralAngleRadians]
  apply Real.cos_arccos
  · norm_num
  · norm_num

What this page does not claim

This answer does not claim that angle_bias derives the tetrahedral angle or any physical bond angle. This answer does not claim that the framework's bond angle predictions match experimental measurements. This answer does not claim that the octahedral formula cos(θ) = -1/5 is physically accurate.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Chemistry/BondAngles.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND