I want to find the matrix-vector product:
$b=C \times a$
where $b=[b_1, ..., b_n]$ is the unknown vector, $a=[a_1, ..., a_n]$ is the known vector, and C is the coefficients matrix.
The complexity to calculate b is $O(n^2)$
Assuming that the C matrix is a Cauchy matrix $n \times n$ matrix as follows:
\begin{align} C[i,j] = \frac{1}{x_i+y_i} \end{align}
Is it possible to calculate b with less complexity?
Here's a brief summary (see Wikipedia and linked arXiv article for more)