Girish Mahajan (Editor)

Nyström method

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In numerical analysis, the Nyström method or quadrature method seeks the numerical solution of an integral equation by replacing the integral with a representative weighted sum. The continuous problem is broken into n discrete intervals, quadrature or numerical integration determines the weights and locations of representative points for the integral. The discrete problem to be solved is now a system of linear equations with n equations and n unknowns.

Contents

From the n solved points the function value at other points is interpolated consistent with the chosen quadrature method. Depending on the original problem and the choice of quadrature the problem may be ill-conditioned.

Since the linear equations require O ( n 3 ) operations to solve, hence high-order quadrature rules perform better because low-order quadrature rules require large n for a given accuracy. Gaussian quadrature is normally a good choice for smooth, non-singular problems.

Discretization of the integral

a b h ( x ) d x k = 1 n w k h ( x k ) where w k are the weights of the quadrature rule, and points x k are the abscissas.

Example

Applying this to the inhomogeneous Fredholm equation of the second kind

f ( x ) = λ u ( x ) a b K ( x , x ) f ( x ) d x ,

results in

f ( x ) λ u ( x ) k = 1 n w k K ( x , x k ) f ( x k ) .

Sampling for Nyström method

The most important step of the Nyström method is sampling, because different sampled landmark points give different approximations of the original matrix.

Uniform sampling without replacement: is the most used approach for this purpose, where every point has the same probability of being included in the sample.

Minimum Sum of Squared Similarities Sampling (MSSS)

MSSS is an non-uniform sampling approach that considers both the variance and the similarity of the data distribution in its sampling data, which approximately maximizes the determinant of the reduced similarity matrix that represents the mutual similarities between sampled data points. It is shown in that this approach increase the speed of the clustering on large datasets.

References

Nyström method Wikipedia