Polynomial bounds for trigonometric functions #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
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:
sin_lt
: forx > 0
we havesin x < x
.sin_gt_sub_cube
: For0 < x ≤ 1
we havex - x ^ 3 / 4 < sin x
.lt_tan
: for0 < x < π/2
we havex < tan x
.cos_le_one_div_sqrt_sq_add_one
andcos_lt_one_div_sqrt_sq_add_one
: for-3 * π / 2 ≤ x ≤ 3 * π / 2
, we havecos x ≤ 1 / sqrt (x ^ 2 + 1)
, with strict inequality ifx ≠ 0
. (This bound is not quite optimal, but not far off)
Tags #
sin, cos, tan, angle
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.