structure
definition
def or abbrev
ForcingChainToLevitation
show as:
view Lean formalization →
formal statement (Lean)
314structure ForcingChainToLevitation where
315 step1_gravity_is_coherence :
316 ∀ field obj, ∃! a, coherence_defect field obj a = 0
317 step2_external_shifts_equilibrium :
318 ∀ field ext obj, ∃! a, modified_coherence_defect field ext obj a = 0
319 step3_anti_coherence_reduces :
320 ∀ field ext obj,
321 (deriv ext.psi obj.h_cm = -(deriv field.phi obj.h_cm)) →
322 effective_gravitational_coupling field ext obj = 0
323 step4_levitation_achieved :
324 ∀ field ext obj,
325 (deriv ext.psi obj.h_cm = -(deriv field.phi obj.h_cm)) →
326 modified_coherence_defect field ext obj 0 = 0
327
328/-- The forcing chain from RS primitives to levitation is complete. -/