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.

Equations
theorem Real.sinc_apply {x : } :
sinc x = if x = 0 then 1 else sin x / x
@[simp]
theorem Real.sinc_zero :
sinc 0 = 1
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
theorem Real.sinc_le_one (x : ) :
sinc x 1
theorem Real.sinc_le_inv_abs {x : } (hx : x 0) :

The function sinc is continuous.