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:
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
@[deprecated Real.mul_le_sin]
Alias of Real.mul_le_sin
.
One half of Jordan's inequality.
In the range [0, π / 2]
, we have a linear lower bound on sin
. The other half is given by
Real.sin_le
.
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.