bookshelf/Common/Real/Basic.lean

30 lines
501 B
Plaintext
Raw Normal View History

import Mathlib.Data.Real.Basic
2023-05-08 19:37:02 +00:00
/-! # Common.Real.Basic
2023-05-04 22:37:54 +00:00
A collection of basic notational conveniences.
-/
/--
An abbreviation of `ℝ²` as the Cartesian product ` × `.
-/
notation "ℝ²" => ×
namespace Real
/--
2023-05-04 22:37:54 +00:00
Definitionally, the area of a unit circle.
###### PORT
As of now, this remains an `axiom`, but it should be replaced by the definition
in `Mathlib` once ported to Lean 4.
-/
axiom pi :
2023-05-04 22:37:54 +00:00
/--
An abbreviation of `pi` as symbol `π`.
-/
notation "π" => pi
end Real