Documentation

Mathlib.Data.Real.Sign

Real sign function #

This file introduces and contains some results about Real.sign which maps negative real numbers to -1, positive real numbers to 1, and 0 to 0.

Main definitions #

Tags #

sign function

noncomputable def Real.sign (r : ) :

The sign function that maps negative real numbers to -1, positive numbers to 1, and 0 otherwise.

Equations
Instances For
    theorem Real.sign_of_neg {r : } (hr : r < 0) :
    theorem Real.sign_of_pos {r : } (hr : 0 < r) :
    @[simp]
    theorem Real.sign_zero :
    sign 0 = 0
    @[simp]
    theorem Real.sign_one :
    sign 1 = 1

    This lemma is useful for working with ℝˣ

    @[simp]
    theorem Real.sign_neg {r : } :
    @[simp]
    @[simp]
    theorem Real.sign_inv (r : ) :