theorem
proved
logicReal_recovered_from_completion
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.RealsFromLogic on GitHub at line 213.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
210 infer_instance
211
212/-- Every recovered real is represented by a Mathlib real and vice versa. -/
213theorem logicReal_recovered_from_completion :
214 (∀ x : LogicReal, fromReal (toReal x) = x) ∧
215 (∀ x : ℝ, toReal (fromReal x) = x) :=
216 ⟨fromReal_toReal, toReal_fromReal⟩
217
218end LogicReal
219
220end
221
222end RealsFromLogic
223end Foundation
224end IndisputableMonolith