pub struct Tp<T>(/* private fields */);
Expand description
The Triangle of Power
This struct formalizes the six fundamental transformations that interrelate exponentiation, roots, and logarithms. These operations are not independent but form a structured system of shifts and rotations, governed by underlying symmetries. Each function belongs to one of two interwoven three-function cycles, with structured transformations that preserve relationships between base, exponent, and power.
The system follows a modular shift structure, where functions transition through well-defined
rotations (shr
and shl
) or switch between cycles through selective shifts. This framework
does not introduce new computations but instead exposes the inherent structure of scaling
operations, making explicit the relationships that underlie exponentiation.
§Structure and Transformations
The six operations are arranged into two distinct three-function cycles, each forming a closed loop under cyclic shifts.
Functions transition within their cycle using forward (shr
) or backward (shl
) shifts, while selective shifts allow
movement between cycles. These relationships define the full space of exponentiation-like transformations.
§Rotation Groups
Each function belongs to one of two interwoven three-function cycles:
- Exponentiation-Logarithm Cycle:
pow → apow → log → pow
- Root-Antilogarithm Cycle:
root → aroot → alog → root
Within each cycle, functions are related by modular shift transformations:
Function | Static Operand Order | Forward Shift (shr ) | Backward Shift (shl ) | Selective Shift |
---|---|---|---|---|
pow | (bep) | apow (epb) | log (pbe) | root (peb) |
apow | (epb) | log (pbe) | pow (bep) | aroot (bpe) |
log | (pbe) | alog (ebp) | pow (bep) | apow (epb) |
root | (bpe) | aroot (peb) | alog (ebp) | apow (epb) |
aroot | (peb) | alog (ebp) | root (bpe) | pow (bep) |
alog | (ebp) | pow (bep) | root (bpe) | aroot (bpe) |
§Shift Transformations
Each function is connected to others by structured shifts:
- Cycle shifts (
shr
,shl
) maintain movement within the same rotation group. - Selective shifts (
X << Y == Z >>
) enable transitions between cycles.
These shifts behave modularly, ensuring all transformations preserve valid operand relationships.
By formalizing these relationships, this struct provides a systematic way to express, explore, and manipulate exponentiation-based transformations, making explicit the structure that underlies their behavior.
Implementations§
Source§impl Tp<f64>
impl Tp<f64>
Sourcepub fn pow(&self, exponent: Self) -> Self
Available on crate feature _float_f64
only.
pub fn pow(&self, exponent: Self) -> Self
_float_f64
only.Computes power
by raising (self
as base) to exponent
.
- math:
- func:
pow(base, exponent) = base^exponent = power
- meta:
base ⊕ exponent = power
- symb:
^
→b^e=p
§Pairs by
self | param | result | shr | shl |
---|---|---|---|---|
= base | = exponent | = power | >> | << |
aroot | root | alog | apow | log |
Sourcepub fn apow(&self, power: Self) -> Self
Available on crate feature _float_f64
only.
pub fn apow(&self, power: Self) -> Self
_float_f64
only.Computes base
, such that raising it to (self
as exponent) produces power
.
- math: ⟺
- func:
apow(exponent, power) = power^(1/exponent) = base
- meta:
exponent ⊕ power = base
- symb:
^
→e^p=b
§Pairs by
self | param | result | shr | shl |
---|---|---|---|---|
= exponent | = power | = base | >> | << |
alog | aroot | root | log | pow |
Sourcepub fn root(&self, exponent: Self) -> Self
Available on crate feature _float_f64
only.
pub fn root(&self, exponent: Self) -> Self
_float_f64
only.Computes base
, such that raising it to exponent
produces (self
as power).
- math: ⟺
- func:
root(power, exponent) = power^(1/exponent) = base
- meta:
power ⊕ exponent = base
- symb:
√
→p√e=b
§Pairs by
self | param | result | shr | shl |
---|---|---|---|---|
= power | = exponent | = base | >> | << |
log | pow | apow | alog | aroot |
Sourcepub fn aroot(&self, power: Self) -> Self
Available on crate feature _float_f64
only.
pub fn aroot(&self, power: Self) -> Self
_float_f64
only.Computes exponent
, such that raising (self
as base) to it produces power
.
- math:
- func:
aroot(base, power) = exponent
- meta:
base ⊕ power = exponent
- symb:
√
→b√p=e
§Pairs by
self | param | result | shr | shl |
---|---|---|---|---|
= base | = power | = exponent | (b>> p>> e>>) | (b<< p<< e<< |
pow | apow | log | root | root |
Sourcepub fn log(&self, base: Self) -> Self
Available on crate feature _float_f64
only.
pub fn log(&self, base: Self) -> Self
_float_f64
only.Computes exponent
as the logarithm of (self
as power) with respect to base
.
- math:
- func:
log(power, base) = log_base(power) = exponent
- meta:
power ⊕ base = exponent
- symb:
@
→p@b=e
§Pairs by
self | param | result | reverse | shl |
---|---|---|---|---|
= power | = base | = exponent | (??) | (b<< e<< p<<) |
root | alog | aroot | alog ?? | log |
Sourcepub fn alog(&self, base: Self) -> Self
Available on crate feature _float_f64
only.
pub fn alog(&self, base: Self) -> Self
_float_f64
only.Computes power
, using (self
as exponent) and base
.
- math:
- func:
alog(exponent, base) = base^exponent = power
- meta:
exponent ⊕ base = power
- symb:
@
→e@b=p
§Pairs by
self | param | result | reverse | shl |
---|---|---|---|---|
= exponent | = base | = power | (??) | (b<< e<< p<<) |
apow | log | pow | log ?? | log |
Auto Trait Implementations§
impl<T> Freeze for Tp<T>where
T: Freeze,
impl<T> RefUnwindSafe for Tp<T>where
T: RefUnwindSafe,
impl<T> Send for Tp<T>where
T: Send,
impl<T> Sync for Tp<T>where
T: Sync,
impl<T> Unpin for Tp<T>where
T: Unpin,
impl<T> UnwindSafe for Tp<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more