Rank of a Potential Evaluation Matrix¶

Copyright (C) 2026 Andreas Kloeckner

MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

In [51]:
import numpy as np
import matplotlib.pyplot as pt

Let's make two particle collections: sources and targets

In [52]:
sources = np.random.randn(2, 200)
targets = np.random.randn(2, 200)

pt.plot(sources[0], sources[1], "go")
pt.plot(targets[0], targets[1], "ro")
Out[52]:
[<matplotlib.lines.Line2D at 0x7f7914197e10>]
No description has been provided for this image

Now let's assume each of these points has a charge, and evaluate the potential at each of the other points.

In [53]:
all_distvecs = sources.reshape(2, 1, -1) - targets.reshape(2, -1, 1)
dists = np.sqrt(np.sum(all_distvecs**2, axis=0))
interaction_mat = 1/dists

pt.imshow(dists)
Out[53]:
<matplotlib.image.AxesImage at 0x7f790fe6d198>
No description has been provided for this image

Finding the Rank: Attempt 1¶

How do we find the rank? Get the matrix to echelon form, look for zero rows.

Bonus Q: Is this the same as LU?

In [54]:
from m_echelon import m_echelon
M, U = m_echelon(interaction_mat)
pt.imshow(np.log10(1e-15+np.abs(U)), cmap="gray")
pt.colorbar()
Out[54]:
<matplotlib.colorbar.Colorbar at 0x7f790fd858d0>
No description has been provided for this image

Finding the Rank: Attempt 2¶

In [55]:
U, sigma, V = np.linalg.svd(interaction_mat)

pt.semilogy(sigma)
Out[55]:
[<matplotlib.lines.Line2D at 0x7f790ffdf908>]
No description has been provided for this image
In [56]:
k = 60
Uk = U[:, :k]
Vk = V.T[:, :k].T

Ak = (Uk * sigma[:k]).dot(Vk)

np.linalg.norm(interaction_mat - Ak, 2)
Out[56]:
7.0952237471847974
In [56]: