Documentation

Mathlib.Analysis.SpecialFunctions.Trigonometric.Sinc

Sinc function #

This file contains the definition of the sinc function and some of its properties.

Main definitions #

Main statements #

noncomputable def Real.sinc (x : โ„) :

The function sin x / x modified to take the value 1 at 0, which makes it continuous.

Instances For
    theorem Real.sinc_apply {x : โ„} :
    sinc x = if x = 0 then 1 else sin x / x
    theorem Real.sinc_of_ne_zero {x : โ„} (hx : x โ‰  0) :
    sinc x = sin x / x
    @[simp]
    theorem Real.sinc_neg (x : โ„) :
    sinc (-x) = sinc x