Real logarithm base b
#
In this file we define Real.logb
to be the logarithm of a real number in a given base b
. We
define this as the division of the natural logarithms of the argument and the base, so that we have
a globally defined function with logb b 0 = 0
, logb b (-x) = logb b x
logb 0 x = 0
and
logb (-b) x = logb b x
.
We prove some basic properties of this function and its relation to rpow
.
Tags #
logarithm, continuity
Alias of Real.tendsto_logb_nhdsNE_zero
.
Alias of Real.tendsto_logb_nhdsGT_zero
.
The function |logb b x|
tends to +∞
as x
tendsto +∞
.
See also tendsto_logb_atTop
and tendsto_logb_atTop_of_base_lt_one
.
Induction principle for intervals of real numbers: if a proposition P
is true
on [x₀, r * x₀)
and if P
for [x₀, r^n * x₀)
implies P
for [r^n * x₀, r^(n+1) * x₀)
,
then P
is true for all x ≥ x₀
.