16 lines
193 B
Plaintext
16 lines
193 B
Plaintext
|
import Mathlib.Data.Real.Basic
|
|||
|
|
|||
|
notation "ℝ²" => ℝ × ℝ
|
|||
|
|
|||
|
notation "ℝ³" => ℝ² × ℝ
|
|||
|
|
|||
|
namespace Real
|
|||
|
|
|||
|
/--
|
|||
|
The area of a unit circle.
|
|||
|
-/
|
|||
|
axiom pi : ℝ
|
|||
|
|
|||
|
notation "π" => pi
|
|||
|
|
|||
|
end Real
|