The traditional Power Law model for Bitcoin is limited; it struggles to simultaneously fit historical data points across different eras without piecewise parameter adjustments. Bitcoin's trajectory is more naturally described as a tangent-based hyper-exponential system, driven by absolute supply scarcity.
Where the integrated system parameters are:
x = Days since Genesis Block (2009-01-03)
f(x) = Price in USD
A = 10-16
B = 8.3 × 10-5
n = 5.395
It is crucial to emphasize that deriving the frequency parameter B does not constitute retrospective curve-fitting. Unlike traditional power law models that require continuous piecewise adjustments to their exponents to accommodate new market cycles, the tangent function dictates a strict, deterministic trajectory. Once the function is anchored to a historical node (e.g., the Day 4086 Covid crash), its geometric curvature is mathematically locked. The fact that this rigid trajectory naturally intersects the subsequent macro-support floor at Day 6388—without requiring a single parameter modification—proves the model is not overfitted, but rather accurately maps the network's underlying, unalterable macro-geometry.
A standard power law (A · xn) struggles to map the stages at Day 2425, Day 4086, and Day 6388 simultaneously. Because it lacks the inherent structural curvature, anchoring the equation to the most recent support node (Day 6388) mathematically forces it to break from the preceding one (Day 4086). Rather than relying on this zero-sum game of piecewise overfitting and continuously bending exponents, a tangent-based model more naturally describes the network's phase transitions, aligning with all historical support nodes through a single, integrated function.
Visual representation of f(x) [blue], f(x+2000) [red], traditional Power Law [dashed grey], and historical nodes [black dots]. Y-axis is logarithmic.
To rigorously test the integrity of the baseline model f(x) without altering its fixed parameters, we can search for historical points where the exact same mathematical curve - shifted forward in time by a constant offset of 2000 days - intersects the network's historical extremes.
This temporal shift (f(x + 2000)) does not represent a predictive trading indicator, a market cycle rule, or a separate functional entity. Rather, it serves purely as a geometric validation tool. The fact that historical valuation extremes independently anchor onto this specific shifted curve - hitting precisely two distinct nodes without parameter manipulation - strongly reinforces the underlying validity of the core function. It confirms that the system's macro-structure is governed by a singular, rigid mathematical law across different temporal coordinates.
Validation nodes for the temporal shift:
The system possesses a strict mathematical boundary where the function reaches a vertical asymptote.
Absolute Mathematical Boundary: x = π / (2 · 8.3 × 10-5) ≈ 18 925 days
This mathematical limit is not a scheduled date for a phase transition. The actual physical phase transition (a vertical shift caused by extreme liquidity vacuums and physical network bottlenecks) can trigger unpredictably at any time prior to this absolute boundary.
Crucially, this asymptotic price explosion does not require the total collapse of the fiat system or infinite capital inflows. It is the mathematical consequence of marginal pricing in an environment of absolute scarcity. Market capitalization is a legacy illusion: the price of the entire network is set by the last traded fraction at the margin. As available liquid supply approaches zero, even minor fiat inflows will push the marginal price and the theoretical market cap to astronomical levels. The asymptote represents the singularity where the liquid supply mathematically vanishes.
For independent verification against live market data, you can search for the public indicator BTCtgX, or apply the following Pine Script overlays the baseline and the temporal shift functions directly onto the Bitcoin chart. Apply this indicator to a BTCUSD log-scale chart. (Select the "strategy" option)
//@version=6
indicator(title="f(x)=A(x) (((tg(B x))/(B)))^(n)", shorttitle="BTCtgX", overlay=true)
A = 1e-16
B = 8.3e-5
n = 5.395
showHigh = input.bool(true, title="Show Shifted Curve (High)")
showLow = input.bool(true, title="Show Base Curve (Low)")
timeShift = input.int(2000, title="Time Shift (Days)", minval=0)
genesis_time = timestamp(2009, 1, 3, 0, 0, 0)
daysElapsed = (time - genesis_time) / 86400000
var float modelPrice = na
var float modelPriceShift = na
if daysElapsed > 0
angle = B * daysElapsed
baseVal = math.tan(angle) / B
modelPrice := A * math.pow(baseVal, n)
daysElapsedShift = daysElapsed + timeShift
angleShift = B * daysElapsedShift
baseValShift = math.tan(angleShift) / B
modelPriceShift := A * math.pow(baseValShift, n)
isBTC = syminfo.ticker == 'BTCUSD' or syminfo.ticker == 'BTCUSDC' or syminfo.ticker == 'BTCUSDT'
plot(isBTC and showLow ? modelPrice : na, color=color.green, linewidth=1, title="Baseline")
plot(isBTC and showHigh ? modelPriceShift : na, color=color.red, linewidth=1, title="Shifted")
It is crucial to understand that the parameters and the resulting asymptote do not constitute a deterministic trading oracle or a scheduled doomsday clock. Rather, this model serves purely as a mathematical compass. The empirical fact that Bitcoin's macroeconomic dynamics naturally adhere to this specific asymptotic geometry—rather than a benign, infinite power law—reveals a profound structural fragility within the fiat-liquidity matrix.
By demonstrating that the network's trajectory perfectly aligns with a finite-time singularity curve, the model proves that a Black Swan phase transition is not a random, unpredictable anomaly. Instead, the risk of hyperbitcoinization is a systemic gravitational pull, fundamentally embedded in the natural geometric curvature of the asset. The system is not simply moving up; it is mathematically running out of space.
To address the inherent skepticism surrounding mathematical price models—and the frequent counter-argument of curve-fitting—it is highly instructive to draw a structural analogy from statistical mechanics, specifically the behavior of gases in a closed system.
At the microscopic level, the movement of individual gas molecules is entirely chaotic and unpredictable. Mathematically speaking, there is always a non-zero probability that a massive cluster of high-speed molecules could spontaneously gather in one microscopic area and rupture the container's wall. Yet, despite this theoretical possibility of extreme deviation, engineers confidently design and rely on safe pressure vessels. We accept thermodynamic models because, while we cannot predict the trajectory of a single molecule, the macroscopic state of the entire system (pressure, volume, temperature) is strictly governed by inviolable, deterministic equations.
Bitcoin's architecture operates under a profoundly similar dynamic. The daily price fluctuations—driven by human psychology, institutional panic, regulatory news, or macroeconomic noise—are the equivalent of these chaotic molecular collisions.
While isolated clusters of market data or temporary anomalies might briefly deviate from the expected framework, these microscopic fluctuations do not invalidate the overarching macro-equation. This model does not attempt to predict every random collision; rather, it serves as the ultimate thermodynamic compass. It proves that despite the short-term chaos, the macroscopic trajectory of the network is deterministically governed by its geometry, inevitably pulling the system toward its finite-time singularity.
* Author's Note on the Asymptote and "Infinite" Valuation: The mathematical concept of an infinite price does not imply that the network requires the absorption of all global wealth. Rather, it signifies a state of fundamental untradability within traditional markets. As the liquid supply completely dries up, centralized exchanges will face total depletion, rendering the asset physically impossible to trade on legacy platforms. At this singularity, the fiat denomination becomes practically meaningless. We have already witnessed micro-examples of this dynamic in regional black markets during localized fiat crises, where peer-to-peer Bitcoin valuations completely decouple from official exchange rates due to severe scarcity. Ultimately, the asymptote does not represent an infinite accumulation of fiat capital, but rather the terminal breakdown of the fiat pricing mechanism itself.
Preprint: https://doi.org/10.5281/zenodo.22140495