Symmetric Wave Interpolation Method
- The SWI method constructs a globally smooth, polynomial-type interpolant by mapping equidistant nodes onto Chebyshev grids and then reverting to the original domain.
- It leverages discrete cosine transforms for efficient coefficient computation, resulting in faster convergence and improved endpoint stability.
- SWI is applicable in spectral methods, signal processing, and financial data fitting, offering stable exponential convergence using uniform sample sets.
The symmetric wave interpolation (SWI) method is a global interpolation technique designed to combine the practical accessibility of equidistant sampling nodes with the superior numerical stability of Chebyshev interpolation. SWI achieves stable and accurate polynomial-type approximation from uniformly spaced data, circumventing the classical Runge phenomenon, and—according to recent experimental benchmarks—often surpasses conventional Chebyshev interpolation in both error and efficiency. The method's core mechanism is a symmetric mapping that translates equidistant points onto Chebyshev grids, enabling the computation of stable Chebyshev expansions which are then "unwound" back onto the original domain, yielding globally smooth interpolants that respect the original data grid (Liu et al., 22 Nov 2025).
1. Underlying Problem and Motivation
In global interpolation, the objective is to construct a function such that for a set of nodes in . Equidistant nodes are prevalent in applications like uniform sensor arrays and financial time-series, yet polynomial interpolation on such grids is prone to the Runge phenomenon: large oscillations and error explosions near domain endpoints as increases. Chebyshev point-based interpolants, using (first kind) or (second kind), mitigate these instabilities but require nonuniform node placement, which is often unavailable in practical datasets. SWI bridges this critical gap by transferring Chebyshev stability to equidistantly sampled data.
2. Symmetric Mapping: Equidistant to Chebyshev Nodes
SWI utilizes specific mappings and to transform equidistant nodes into Chebyshev grids:
- First-kind mapping: ensures .
- Second-kind mapping: guarantees .
The inverses and are known in closed form, respectively:
This bidirectional correspondence permits evaluation and expansion in either coordinate set without loss of information.
3. Construction of the Symmetric Wave Interpolant
For a given smooth function , SWI constructs the "pulled-back" function on the transformed Chebyshev grid and expresses it as a degree- Chebyshev expansion:
where are Chebyshev polynomials. The interpolant on the original domain is thus
with termed the "symmetric wave" basis (Editor's term). These basis functions inherit the oscillatory structure of Chebyshev polynomials but are defined directly on the equidistant domain.
4. Coefficient Computation and Implementation Workflow
Critical to SWI's practicality is that interpolant coefficients can be computed via discrete cosine transforms (DCTs), paralleling standard Chebyshev workflows:
- First-kind SWI:
with for $0 < i < n$, $1/2$ for or .
- Second-kind SWI:
This approach is computationally efficient: SWI adds only overhead to classical Chebyshev interpolation. Computing the mapping is , the DCT is , and evaluating can be performed via Clenshaw recurrence or inverse DCT with matching complexity.
5. Theoretical Stability and Error Suppression
SWI leverages the classical error bounds of Chebyshev interpolation applied to the mapped function . Notably,
- First-kind SWI error:
- Second-kind SWI error (with parameter ):
These bounds exhibit exponential decay in and explain the suppression of Runge-type endpoint oscillations: after mapping, the problematic regions are handled within the Chebyshev grid's well-conditioned structure.
6. Benchmarks and Comparative Performance
Experimental comparisons assess SWI (both first-kind SWI₁-Equid and second-kind SWI₂-Equid) against Chebyshev interpolation (CI-Cheby) on standard test functions including the Runge function , Gaussian bumps, oscillatory rationals, and asymmetric humps. Results indicate:
- SWI achieves uniformly small -norm and errors at elevated , without endpoint oscillations.
- For target error , SWI typically requires fewer points than Chebyshev interpolation. For example:
| Function | CI‐Cheby (n₁) | SWI‐Equid (n₂) |
|---|---|---|
| Runge f₁ | 20 | 16 |
| Oscill. f₂ | 56 | 40 |
In nearly all tested cases (except for two pathological variants), SWI outperformed or matched Chebyshev in sample efficiency, with error curves consistently demonstrating faster convergence and increased endpoint stability (cf. Figure 1, (Liu et al., 22 Nov 2025)).
7. Advantages, Limitations, and Domains of Application
SWI’s key advantage is its ability to deliver Chebyshev-level stability and exponential convergence using only equidistant samples—a common data format across science and engineering. It is robust to data rounding and retains global smoothness, with no need for domain remeshing. A limitation inherited from Chebyshev theory is sensitivity to feature location: for functions with sharp variations close to , the mapping further concentrates points near boundaries, possibly necessitating additional expansion terms for high fidelity. Adaptive mappings and hybrid, piecewise strategies are plausible remedies.
SWI is applicable wherever stable global polynomial-type approximation is required from uniform samples, with domains including spectral methods for PDEs, signal processing with uniform time steps, actuator-sensor networks, and financial data fitting.
By providing a mathematically rigorous and practically convenient tool for global function approximation on equidistant data, symmetric wave interpolation closes a persistent gap between numerical stability and point accessibility (Liu et al., 22 Nov 2025).