Product of the segments of chords
ProvedFamousTheorems.intersecting_chordsThe intersecting chords theorem.
If lie on a common sphere and the chords and both pass through a point , then
The common value depends only on and the sphere, not on the chord chosen: it is where is the centre. That quantity is the power of the point , and this theorem is the statement that the power is well defined — which is why every chord through is split in the same proportion. The external version, with outside the circle, gives the tangent–secant relation, and the locus of points of equal power with respect to two circles is their radical axis.
Euclid proves it as III.35, with III.36 and III.37 for the external cases. Steiner's systematic use of the power of a point in the 1820s turned it from a proposition about circles into the organising idea of inversive geometry.
Formalization note. says lies strictly between and , i.e. is
interior to the chord. The result is Mathlib's
EuclideanGeometry.mul_dist_eq_mul_dist_of_cospherical_of_angle_eq_pi.
import Mathlib
namespace FamousTheorems
open scoped EuclideanGeometry Real
theorem intersecting_chords
{V : Type*} {P : Type*} [NormedAddCommGroup V] [InnerProductSpace ℝ V]
[MetricSpace P] [NormedAddTorsor V P]
{a b c d p : P} (h : EuclideanGeometry.Cospherical ({a, b, c, d} : Set P))
(hapb : ∠ a p b = π) (hcpd : ∠ c p d = π) :
dist a p * dist b p = dist c p * dist d p := by sorry
end FamousTheorems