Documentation

Mathlib.Analysis.SpecialFunctions.Trigonometric.Bounds

Polynomial bounds for trigonometric functions #

Main statements #

This file contains upper and lower bounds for real trigonometric functions in terms of polynomials. See Trigonometric.Basic for more elementary inequalities, establishing the ranges of these functions, and their monotonicity in suitable intervals.

Here we prove the following:

Tags #

sin, cos, tan, angle

theorem Real.sin_lt {x : } (h : 0 < x) :

For 0 < x, we have sin x < x.

theorem Real.sin_le {x : } (hx : 0 x) :
theorem Real.lt_sin {x : } (hx : x < 0) :
theorem Real.le_sin {x : } (hx : x 0) :
theorem Real.two_div_pi_mul_le_sin {x : } (hx₀ : 0 x) (hx : x Real.pi / 2) :

Jordan's inequality.

theorem Real.sin_le_two_div_pi_mul {x : } (hx : -(Real.pi / 2) x) (hx₀ : x 0) :

Jordan's inequality for negative values.

theorem Real.one_sub_two_div_pi_mul_le_cos {x : } (hx₀ : 0 x) (hx : x Real.pi / 2) :

Jordan's inequality for cos.

theorem Real.cos_quadratic_upper_bound {x : } (hx : |x| Real.pi) :
Real.cos x 1 - 2 / Real.pi ^ 2 * x ^ 2
theorem Real.sin_gt_sub_cube {x : } (h : 0 < x) (h' : x 1) :
x - x ^ 3 / 4 < Real.sin x

For 0 < x ≤ 1 we have x - x ^ 3 / 4 < sin x.

This is also true for x > 1, but it's nontrivial for x just above 1. This inequality is not tight; the tighter inequality is sin x > x - x ^ 3 / 6 for all x > 0, but this inequality has a simpler proof.

theorem Real.deriv_tan_sub_id (x : ) (h : Real.cos x 0) :
deriv (fun (y : ) => Real.tan y - y) x = 1 / Real.cos x ^ 2 - 1

The derivative of tan x - x is 1/(cos x)^2 - 1 away from the zeroes of cos.

theorem Real.lt_tan {x : } (h1 : 0 < x) (h2 : x < Real.pi / 2) :

For all 0 < x < π/2 we have x < tan x.

This is proved by checking that the function tan x - x vanishes at zero and has non-negative derivative.

theorem Real.le_tan {x : } (h1 : 0 x) (h2 : x < Real.pi / 2) :
theorem Real.cos_lt_one_div_sqrt_sq_add_one {x : } (hx1 : -(3 * Real.pi / 2) x) (hx2 : x 3 * Real.pi / 2) (hx3 : x 0) :
Real.cos x < 1 / (x ^ 2 + 1)
theorem Real.cos_le_one_div_sqrt_sq_add_one {x : } (hx1 : -(3 * Real.pi / 2) x) (hx2 : x 3 * Real.pi / 2) :
Real.cos x 1 / (x ^ 2 + 1)