Integration by parts for line derivatives #
Let f, g : E → ℝ
be two differentiable functions on a real vector space endowed with a Haar
measure. Then ∫ f * g' = - ∫ f' * g
, where f'
and g'
denote the derivatives of f
and g
in a given direction v
, provided that f * g
, f' * g
and f * g'
are all integrable.
In this file, we prove this theorem as well as more general versions where the multiplication is replaced by a general continuous bilinear form, giving versions both for the line derivative and the Fréchet derivative. These results are derived from the one-dimensional version and a Fubini argument.
Main statements #
integral_bilinear_hasLineDerivAt_right_eq_neg_left_of_integrable
: integration by parts in terms of line derivatives, withHasLineDerivAt
assumptions and general bilinear form.integral_bilinear_hasFDerivAt_right_eq_neg_left_of_integrable
: integration by parts in terms of Fréchet derivatives, withHasFDerivAt
assumptions and general bilinear form.integral_bilinear_fderiv_right_eq_neg_left_of_integrable
: integration by parts in terms of Fréchet derivatives, written withfderiv
assumptions and general bilinear form.integral_smul_fderiv_eq_neg_fderiv_smul_of_integrable
: integration by parts for scalar action, in terms of Fréchet derivatives, written withfderiv
assumptions.integral_mul_fderiv_eq_neg_fderiv_mul_of_integrable
: integration by parts for scalar multiplication, in terms of Fréchet derivatives, written withfderiv
assumptions.
Implementation notes #
A standard set of assumptions for integration by parts in a finite-dimensional real vector space (without boundary term) is that the functions tend to zero at infinity and have integrable derivatives. In this file, we instead assume that the functions are integrable and have integrable derivatives. These sets of assumptions are not directly comparable (an integrable function with integrable derivative does not have to tend to zero at infinity). The one we use is geared towards applications to Fourier transforms.
TODO: prove similar theorems assuming that the functions tend to zero at infinity and have integrable derivatives.
Integration by parts for line derivatives
Version with a general bilinear form B
.
If B f g
is integrable, as well as B f' g
and B f g'
where f'
and g'
are derivatives
of f
and g
in a given direction v
, then ∫ B f g' = - ∫ B f' g
.
Integration by parts for Fréchet derivatives
Version with a general bilinear form B
.
If B f g
is integrable, as well as B f' g
and B f g'
where f'
and g'
are derivatives
of f
and g
in a given direction v
, then ∫ B f g' = - ∫ B f' g
.
Integration by parts for Fréchet derivatives
Version with a general bilinear form B
.
If B f g
is integrable, as well as B f' g
and B f g'
where f'
and g'
are the derivatives
of f
and g
in a given direction v
, then ∫ B f g' = - ∫ B f' g
.
Integration by parts for Fréchet derivatives
Version with a scalar function: ∫ f • g' = - ∫ f' • g
when f • g'
and f' • g
and f • g
are integrable, where f'
and g'
are the derivatives of f
and g
in a given direction v
.
Integration by parts for Fréchet derivatives
Version with two scalar functions: ∫ f * g' = - ∫ f' * g
when f * g'
and f' * g
and f * g
are integrable, where f'
and g'
are the derivatives of f
and g
in a given direction v
.