The distributive Haar characters of ℝ
and ℂ
#
This file computes distribHaarChar
in the case of the actions of ℝˣ
on ℝ
and of ℂˣ
on ℂ
.
This lets us know what volume (x • s)
is in terms of ‖x‖
and volume s
, when x
is a
real/complex number and s
is a set of reals/complex numbers.
Main declarations #
distribHaarChar_real
:distribHaarChar ℝ
is the usual norm onℝ
.distribHaarChar_complex
:distribHaarChar ℂ
is the usual norm onℂ
squared.Real.volume_real_smul
:volume (x • s) = ‖x‖₊ * volume s
for allx : ℝ
ands : Set ℝ
.Complex.volume_complex_smul
:volume (z • s) = ‖z‖₊ ^ 2 * volume s
for allz : ℂ
ands : Set ℂ
.
The distributive Haar character of the action of ℝˣ
on ℝ
is the usual norm.
This means that volume (x • s) = ‖x‖ * volume s
for all x : ℝ
and s : Set ℝ
.
See Real.volume_real_smul
.
The distributive Haar character of the action of ℂˣ
on ℂ
is the usual norm squared.
This means that volume (z • s) = ‖z‖ ^ 2 * volume s
for all z : ℂ
and s : Set ℂ
.
See Complex.volume_complex_smul
.