Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

Free functions

linear_interpolateLinear interpolation between two values. Returns start + (end - start) * t
exponential_growthCalculates exponential growth: initial × (1 + rate)^periods
decayCalculates exponential decay: initial × (1 - rate)^periods Requires rate < 1 for meaningful results.
compoundCalculates compound interest with specified frequency. Formula: principal × (1 + rate/n)^(n×t)…
simple_interestCalculates simple interest: principal × (1 + rate × time)
continuous_compoundCalculates continuously compounded interest: principal × e^(rate × time) The theoretical limit of compound interest as compounding frequency → ∞.
present_valueCalculates the present value of a future amount. Formula: FV / (1 + rate)^periods…
effective_annual_rateCalculates the effective annual rate (EAR) from a nominal rate. Formula: (1 + r/n)^n - 1…