pith. machine review for the scientific record. sign in
def

zetaReciprocal

definition
show as:
view math explainer →
module
IndisputableMonolith.NumberTheory.EulerInstantiation
domain
NumberTheory
line
364 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.NumberTheory.EulerInstantiation on GitHub at line 364.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

 361
 362/-- The actual reciprocal zeta function. Around a hypothetical zero, this is the
 363meromorphic object whose sampled phase should realize the defect charge. -/
 364noncomputable def zetaReciprocal (s : ℂ) : ℂ :=
 365  (riemannZeta s)⁻¹
 366
 367/-- The current geometric center attached to a defect sensor. The present sensor
 368stores only the real part, so this uses the real-axis proxy center already used
 369elsewhere in the stack. -/
 370noncomputable def defectSensorCenter (sensor : DefectSensor) : ℂ :=
 371  (sensor.realPart : ℂ)
 372
 373/-- Sample a point on a circle around the current sensor center. This is the
 374geometric entry point for replacing abstract phase families by actual samples of
 375`ζ⁻¹` or Euler factors on circles. -/
 376noncomputable def defectSensorCirclePoint (sensor : DefectSensor) (r θ : ℝ) : ℂ :=
 377  circleMap (defectSensorCenter sensor) r θ
 378
 379/-- The reciprocal zeta function sampled on a sensor circle. -/
 380noncomputable def zetaReciprocalOnSensorCircle
 381    (sensor : DefectSensor) (r θ : ℝ) : ℂ :=
 382  zetaReciprocal (defectSensorCirclePoint sensor r θ)
 383
 384/-- Explicit real-part formula for the current sensor-circle parameterization. -/
 385theorem defectSensorCirclePoint_re (sensor : DefectSensor) (r θ : ℝ) :
 386    (defectSensorCirclePoint sensor r θ).re = sensor.realPart + r * Real.cos θ := by
 387  rw [defectSensorCirclePoint, defectSensorCenter, circleMap]
 388  simp [Complex.mul_re, Complex.exp_ofReal_mul_I_re]
 389
 390/-- Any circle around the sensor center whose radius stays inside the strip still
 391lies in the open half-plane `Re(s) > 1/2`. -/
 392theorem defectSensorCirclePoint_mem_strip
 393    (sensor : DefectSensor) {r θ : ℝ}
 394    (hr_nonneg : 0 ≤ r) (hr : r < sensor.realPart - 1 / 2) :