SearcharxivSearch

arXiv subjects

Felix Reichel

Publications and source records attributed to Felix Reichel.

12 recordsLinked to original sources

$2B$ or Not $2B$: A Tale of Three Algorithms for Streaming: Covariance Estimation after Welford and Chan-Golub-LeVeque

We place three algorithms for computing the unbiased sample covariance matrix in streaming and distributed settings on a common algebraic, numerical, and statistical foundation. The Gram algorithm, derived from the variance reformulation, maintains the running cross-product matrix $G_t = \sum_{i=1}^t x_i x_i^\top$ and the column-sum vector $s_t = \sum_{i=1}^t x_i$, yielding the unbiased covariance estimator $S_t = (t-1)^{-1}(G_t - t^{-1}s_t s_t^\top)$ in $O(p^2)$ time per update. The Welford algorithm propagates a running mean $m_t$ and outer-product corrections $M_t$, with updates $m_t = m_{t-1} + (x_t - m_{t-1})/t$ and $M_t = M_{t-1} + (x_t - m_{t-1})(x_t - m_t)^\top$, achieving the same asymptotic cost with improved numerical stability under large data shifts. The Chan-Golub-LeVeque algorithm supports block-parallel merging through the exact identity $M = M_A + M_B + \frac{n_A n_B}{n_A+n_B}(m_B - m_A)(m_B - m_A)^\top$, making it the natural choice for distributed and map-reduce architectures. All three algorithms produce the same estimator $S_t = M_t/(t-1)$ in exact arithmetic, although their finite-precision behavior differs markedly. Beyond runtime and numerical comparisons, we introduce a conformal prediction framework for streaming covariance estimation that yields finite-sample, distribution-free confidence sets $C_{t,jk}$ for each entry $S_{t,jk}$ of the covariance matrix at any step $t$ of the data stream. Experiments confirm that the Gram algorithm is fastest for batch computation, Welford is uniquely robust to catastrophic cancellation under large mean shifts, CGL is optimal for distributed settings, and conformal intervals achieve the nominal coverage level across all three algorithms.

stat.CO

High-Performance Variance-Covariance Matrix Construction Using an Uncentered Gram Formulation

Reichel (2025) defined the bariance as a pairwise-difference measure that can be rewritten in linear time using only scalar sums. We extend this idea to the covariance matrix by showing that the standard matrix expression involving the uncentered Gram matrix and a correction term is algebraically identical to the pairwise-difference definition while avoiding explicit centering. The computation then reduces to one outer product of dimension p-by-p and a single subtraction. Benchmarks in Python show clear runtime gains, especially when BLAS optimizations are absent. Optionally faster Gram-matrix routines such as RXTX (Rybin et al., 2025) further reduce overall cost.

stat.CO

Price Pass-Through of Austria's Single-Use Plastics Producer Charges: Evidence from Retail Offer Spells

Single use plastics (SUPs) impose substantial environmental costs. Following Directive (EU) 2019/904, Austria introduced producer charges and mandatory participation in collection and recycling systems. This paper exploits a monthly panel of retail offer spells drawn from a price comparison platform to estimate the extent to which compliance costs pass through to posted online prices in Austria. The treated sample comprises keyword matched SUP products including balloons, to go cups, wet wipes, plastic bags, food containers, tobacco filter items, beverage bottles, and plastic wraps observed alongside a control group of non SUP listings over 2020-2024. A two way fixed effects (TWFE) specification places the average post treatment price increase at approximately 4.1 percent. A sequential TWFE model separating the administrative reporting phase from March 2023 and the payment due phase from March 2024 reveals that the larger adjustment occurred during the earlier reporting stage, with a reporting only effect of approximately 8.1 percent and an incremental payment phase effect of 5.6 percent. For balloons, a category subject to pronounced regulatory fee exposure, event study estimates exceed 50 percent immediately following the initial payment date and remain elevated throughout most of the post treatment window. These findings indicate that Austrian online retailers adjusted prices in advance of fee payment deadlines, consistent with anticipatory pass through of expected compliance costs rather than a discrete response to realized payments. As the data contain price observations but not quantity data, the analysis speaks to price incidence and not to consumption or environmental outcomes.

econ.GN

Two-Stage Asymmetric Tullock Contests with Cost Shifters and Endogenous Continuation Decision

This paper introduces a contest-theoretic simplified model of triathlon as a sequential two-stage game. In Stage 1 (post-swim), participants decide whether to continue or withdraw from the contest, thereby generating an endogenous participation decision. In Stage 2 (bike-run), competition is represented as a Tullock contest in which swim drafting acts as a multiplicative shifter of quadratic effort costs. Closed-form equilibrium strategies are derived in the two-player case, and existence, uniqueness, and comparative statics are shown in the asymmetric n-player case. The continuation decision yields athlete-specific cutoff rules in swim drafting intensity and induces subgame-perfect equilibria (SPEs) with endogenous participation sets. The analysis relates swim drafting benefits, exposure, and group size to heterogeneous effective cost parameters and equilibrium efforts.

econ.GN

Statistically Significant Linear Regression Coefficients Solely Driven By Outliers In Finite-sample Inference

In this paper, we investigate the impact of outliers on the statistical significance of coefficients in linear regression. We demonstrate, through numerical simulation using R, that a single outlier can cause an otherwise insignificant coefficient to appear statistically significant. We compare this with robust Huber regression, which reduces the effects of outliers. Afterwards, we approximate the influence of a single outlier on estimated regression coefficients and discuss common diagnostic statistics to detect influential observations in regression (e.g., studentized residuals). Furthermore, we relate this issue to the optional normality assumption in simple linear regression [14], required for exact finite-sample inference but asymptotically justified for large n by the Central Limit Theorem (CLT). We also address the general dangers of relying solely on p-values without performing adequate regression diagnostics. Finally, we provide a brief overview of regression methods and discuss how they relate to the assumptions of the Gauss-Markov theorem.

stat.ME

Strategic Effort and Non-Linear Positional Bandwagon Drafting Benefits in Multi-Stage Competitive Games: Evidence from Triathlon

This paper examines strategic effort and positioning choices in finite multistage games These choices can generate positional bandwagon drafting benefits through externalities when athletes follow others trajectories Focusing on open-water swim drafting where athletes reduce drag by swimming directly behind peers its performance effects on final race outcomes are estimated through an estimated structural framework with endogenous positioning choices and predetermined effort Leveraging exogenous variation from COVID19 drafting bans in Austrian triathlons which altered start procedures and disrupted standard group formations a panel leave-one-out group ability instrumental variables strategy is applied to isolate the causal nonlinear effect of positional drafting. Restricted sample and pooled positional drafting benefits IV estimates reveal nonlinear concave gains in small groups each deeper drafting position improves finishing rank by over 30 with diminishing returns in larger groups.

econ.GN

On Bessel's Correction: Unbiased Sample Variance, the Bariance, and a Novel Runtime-Optimized Estimator

Bessel's correction adjusts the denominator in the sample variance formula from n to n-1 to ensure an unbiased estimator of the population variance. This paper provides rigorous algebraic derivations geometric interpretations and visualizations to reinforce the necessity of this correction. It further introduces the concept of Bariance an alternative dispersion measure based on pairwise squared differences that avoids reliance on the arithmetic mean. Building on this we address practical concerns raised in Rosenthals article [Rosenthal, 2015] which advocates for n-based estimates from a mean squared error (MSE) perspective particularly in pedagogical contexts and specific applied settings. Finally, the empirical component of this work based on simulation studies demonstrates that estimating the population variance via an algebraically optimized Bariance approach can yield a computational advantage. Specifically the unbiased Bariance estimator can be computed in linear time resulting in shorter runtimes while preserving statistical validity.

stat.ME

Using Covid-19 Response Policy to Estimate Open Water Swim Drafting Effects in Triathlon

This study investigates the causal effects of open-water swim drafting by leveraging a natural experiment induced by staggered race starts during the COVID-19 pandemic. Before 2020, athletes started in groups, enabling drafting benefits, while pandemic-related restrictions significantly reduced these opportunities. Using agglomerative hierarchical clustering of swim-out times, I analyze optimal drafting positions and estimate their impact on Swim-Out performance. Our empirical findings reveal that swim drafting benefits were statistically insignificant in 2020 but persisted post-pandemic at slightly reduced levels. I find that drafting becomes advantageous only from the third trailing position onward, with earlier positions primarily serving to minimize fatigue. To mitigate endogeneity, I employ athlete and event fixed effects. The seemingly inverse decaying nature of drafting benefits partially addresses some concerns of simultaneous reverse causality and omitted variable bias. This study provides the first largescale causal estimate of drafting effects in real-world triathlon race settings.

econ.GN

Spatial Competition on Psychological Pricing Strategies -- Preliminary Evidence from an Online Marketplace

This paper investigates whether spatial proximity shapes psychological-pricing choices on Austria's C2C marketplace willhaben. Two web-scraped snapshots of 826 Woom Bike listings - a standardised product sold on the platform reveal that sellers near direct competitors are more likely to adopt 9-, 90-, or 99-ending prices, who also use such pricing strategy unconditional on product characteristics or underlying spatiotemporal differences. Such strategy is associated with an average premium of approximately cet. par. 3.4 %. Information asymmetry persists: buyer trust hinges on signals such as the "Trusted Seller" badge, and missing data on the "PayLivery" feature. Lacking final transaction prices limits inference.

econ.EM

Effective viscosity of methyl cellulose solutions in phosphate buffered saline in real-time deformability cytometry

Here, we derive the equations to calculate the effective viscosity of solutions of methyl cellulose (MC) dissolved in phosphate buffered saline (PBS) in real-time deformability cytometry (RT-DC) experiments. The calculations are based on the rheometer measurements described by Büyükurganci et al. (2022). We outline how to get the final equations and compare the results to the current viscosity model from Herold (2017). These viscosity functions will be used to determine the Young's moduli of biological cells and other soft materials from RT-DC experiments.

cond-mat.soft

A New Hyperelastic Lookup Table for RT-DC

Real-time deformability cytometry (RT-DC) is an established method that quantifies features like size, shape, and stiffness for whole cell populations on a single-cell level in real time. To extract the cell stiffness, a lookup table (LUT) disentangles the experimentally derived steady state cell deformation and the projected area, yielding the Young's modulus. So far, two lookup tables exists, but are limited to simple linear material models and cylindrical channel geometries. Here, we present two new lookup tables for RT-DC based on a neo-Hookean hyperelastic material numerically derived by simulations based on the finite element method in square and cylindrical channel geometries. At the same time, we quantify the influence of the shear-thinning behaviour of the surrounding medium on the stationary deformation of cells in RT-DC and discuss the applicability and impact of the proposed LUTs regarding past and future RT-DC data analysis. Additionally, we provide insights about the cell strain and stresses, as well as the influence resulting from the rotational symmetric assumption on the cell deformation and volume estimation. The new lookup tables as well as the numerical cell shapes are made freely available.

q-bio.QM

Extreme compression of sentence-transformer ranker models: faster inference, longer battery life, and less storage on edge devices

Modern search systems use several large ranker models with transformer architectures. These models require large computational resources and are not suitable for usage on devices with limited computational resources. Knowledge distillation is a popular compression technique that can reduce the resource needs of such models, where a large teacher model transfers knowledge to a small student model. To drastically reduce memory requirements and energy consumption, we propose two extensions for a popular sentence-transformer distillation procedure: generation of an optimal size vocabulary and dimensionality reduction of the embedding dimension of teachers prior to distillation. We evaluate these extensions on two different types of ranker models. This results in extremely compressed student models whose analysis on a test dataset shows the significance and utility of our proposed extensions.

cs.LG