Integration of specific interval integrals #
This file contains proofs of the integrals of various specific functions. This includes:
- Integrals of simple functions, such as
id
,pow
,inv
,exp
,log
- Integrals of some trigonometric functions, such as
sin
,cos
,1 / (1 + x^2)
- The integral of
cos x ^ 2 - sin x ^ 2
- Reduction formulae for the integrals of
sin x ^ n
andcos x ^ n
forn ≥ 2
- The computation of
∫ x in 0..π, sin x ^ n
as a product for even and oddn
(used in proving the Wallis product for pi) - Integrals of the form
sin x ^ m * cos x ^ n
With these lemmas, many simple integrals can be computed by simp
or norm_num
.
See test/integration.lean
for specific examples.
This file also contains some facts about the interval integrability of specific functions.
This file is still being developed.
Tags #
integrate, integration, integrable, integrability
Interval integrability #
See intervalIntegrable_rpow'
for a version with a weaker hypothesis on r
, but assuming the
measure is volume.
See intervalIntegrable_rpow
for a version applying to any locally finite measure, but with a
stronger hypothesis on r
.
See intervalIntegrable_cpow'
for a version with a weaker hypothesis on r
, but assuming the
measure is volume.
See intervalIntegrable_cpow
for a version applying to any locally finite measure, but with a
stronger hypothesis on r
.
Integrals of the form c * ∫ x in a..b, f (c * x + d)
#
Integrals of simple functions #
Integral of sin x ^ n
#
The reduction formula for the integral of sin x ^ n
for any natural n ≥ 2
.
Integral of cos x ^ n
#
The reduction formula for the integral of cos x ^ n
for any natural n ≥ 2
.
Integral of sin x ^ m * cos x ^ n
#
Simplification of the integral of sin x ^ m * cos x ^ n
, case m
and n
are both even.