def
definition
gap
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Gap45.Derivation on GitHub at line 100.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
Jphi_numerical_band -
visualBeautyCert -
adjacencyGap_eq -
adjacencyGap_pos -
popularity_le_one -
potterySerialCert -
averageGap_eq -
averageGap_in_gap45_band -
styleGap -
styleSuccessionCert -
westernCanon_length -
BIT_carrier_period_band -
fastRadioBurstFromBITCert -
FRB_period_strict_increasing -
planetaryFormationCert -
r_orbit_gap_skip_band -
bimodal_ratio_lt_phi_nine -
gap_size_pos -
pulsarPeriodFromRungCert -
pulsar_period_one_statement -
bridge -
forecastSkill_decay -
lorenzLimitDays -
sat_recognition_time -
CircuitLedgerCert -
circuitSeparation -
no_sublinear_universal_decoder -
SpectralTuringBridgeHypothesis -
RecognitionScenario -
empty_formula_flat_landscape -
iteration_bound_from_clauses -
UNSATGapCondition -
landscape_linear -
phi_critical_energy -
alpha_components_derived -
delta_kappa -
alphaInv_linear_term -
exponential_form_from_constant_log_derivative -
exponential_residual -
alphaInv_predicted_range_check
formal source
97/-! ## The 45-Gap Derivation -/
98
99/-- The gap is the product of closure and Fibonacci factors. -/
100def gap : ℕ := closure_factor * fibonacci_factor
101
102/-- **Main Theorem**: The gap equals 45. -/
103@[simp] theorem gap_eq_45 : gap = 45 := rfl
104
105/-- The gap factors as (8+1) × 5. -/
106theorem gap_factorization : gap = (eight_tick_period + 1) * 5 := rfl
107
108/-- The gap is forced by eight-tick and Fibonacci structure. -/
109theorem gap_forced_from_eight_tick_and_fibonacci :
110 gap = closure_factor * fibonacci_factor ∧
111 closure_factor = eight_tick_period + 1 ∧
112 fibonacci_factor = fib 4 := by
113 exact ⟨rfl, rfl, rfl⟩
114
115/-- 45 is coprime with 8. -/
116theorem gap_coprime_with_8 : Nat.gcd gap 8 = 1 := by
117 simp [gap, closure_factor, fibonacci_factor]
118 decide
119
120/-- Alternative: 45 = 9 × 5. -/
121theorem forty_five_eq_nine_times_five : (45 : ℕ) = 9 * 5 := rfl
122
123/-- 45's prime factorization: 3² × 5. -/
124theorem forty_five_factorization : (45 : ℕ) = 3^2 * 5 := by decide
125
126/-! ## LCM with Eight-Tick -/
127
128/-- The full synchronization period. -/
129def full_period : ℕ := Nat.lcm eight_tick_period gap
130