Expand description
ℝ⁺: The Positive Reals (Multiplicative Scaling Group)
This module implements ℝ⁺, the group of positive real numbers under multiplication. ℝ⁺ is the symmetry group for scaling transformations in applications like:
- Volatility surface analysis (IV scaling)
- Image processing (contrast/brightness)
- Economic growth models (multiplicative factors)
§Mathematical Background
§Definition
ℝ⁺ = (0, ∞) with multiplicationThe positive reals form a Lie group under multiplication.
§Group Structure
- Multiplication: a · b (standard multiplication)
- Identity: 1
- Inverse: a⁻¹ = 1/a
- Abelian: a · b = b · a
§Lie Algebra
Lie(ℝ⁺) ≅ ℝ (the real line with addition)
Exponential map: exp(x) = eˣ
Logarithm: log(a) = ln(a)§Topological Properties
- Non-compact: Unlike U(1), ℝ⁺ extends to infinity
- Simply connected: π₁(ℝ⁺) = 0 (no winding numbers)
- Contractible: Homotopy equivalent to a point
§Isomorphism with (ℝ, +)
The exponential map provides a Lie group isomorphism:
exp: (ℝ, +) → (ℝ⁺, ×)
log: (ℝ⁺, ×) → (ℝ, +)§Applications
- Volatility surfaces:
IV(K,T) = λ · IV_eq(K,T)models level shifts - Scale invariance: Physical systems with no preferred scale
- Log-returns:
r = log(S_t/S_0)lives in the Lie algebra
Structs§
- RPlus
- An element of ℝ⁺, the multiplicative group of positive reals
- RPlus
Algebra - Lie algebra of ℝ⁺, isomorphic to (ℝ, +)