Solution of a certain NxN matrix, when N->∞

  • Context: Graduate 
  • Thread starter Thread starter onkel_tuca
  • Start date Start date
  • Tags Tags
    Matrix
Click For Summary
SUMMARY

The discussion centers on solving a specific NxN Vandermonde matrix as N approaches infinity. The matrix components grow large while the solution vector components converge to smaller values, particularly noting that a1 approaches 1/2 as N increases. The user seeks a polynomial representation of the solution vector, specifically P(x), which satisfies the equation P(-l(l+1)) = 1/(2l+1) for all natural l>0. The conversation highlights the challenges in computing these values without numerical methods.

PREREQUISITES
  • Understanding of Vandermonde matrices and their properties
  • Familiarity with polynomial interpolation techniques
  • Knowledge of limits and convergence in mathematical analysis
  • Basic proficiency in numerical methods for solving equations
NEXT STEPS
  • Research the properties and applications of Vandermonde matrices
  • Study polynomial interpolation and its relation to matrix solutions
  • Explore numerical methods for approximating solutions to large systems of equations
  • Investigate convergence behavior of sequences and series in mathematical analysis
USEFUL FOR

Mathematicians, data scientists, and engineers interested in matrix theory, polynomial solutions, and numerical analysis, particularly those dealing with large systems and convergence issues.

onkel_tuca
Messages
6
Reaction score
0
Hello fellow nerds,

I've come across a math problem, where I'd like to find the solution vector of a NxN square matrix. It is possible to find a solution for a given N, albeit numbers in the matrix become very large for any N>>1, and numbers in the solution vector become very small. So it's not easy to compute solutions. Anyhow I realized that the components of the solution vector seem to converge and I'm asking myself if it's possible to write down the solution for N->∞.

Here's the matrix:

\begin{equation}
\begin{pmatrix}
1&-2&[-2]^2&\dots&[-2]^{N-1}\\
1&-6&[-6]^2&\dots&[-6]^{N-1}\\
1&-12&[-12]^2&\dots&[-12]^{N-1}\\
\vdots&\vdots&\vdots&\ddots&\vdots\\
1&-N(N+1)&[-N(N+1)]^2&\dots&[-N(N+1)]^{N-1}
\end{pmatrix}
\begin{pmatrix}
a_1\\
a_3\\
a_5\\
\vdots\\
a_{2N-1}
\end{pmatrix}=
\begin{pmatrix}
1/3\\
1/5\\
1/7\\
\vdots\\
\frac 1 {2N+1}
\end{pmatrix}
\end{equation}

or:

\begin{eqnarray}
\sum_{k=1}^{N}a_{2k-1} \left[-l(l+1)\right]^{k-1}=\frac 1{2l+1}\;,
\end{eqnarray}

for all l≤N.

I'm looking for the vector a (the numbering of the index is indeed arbitrary). For instance for N=1, one finds a1=1/3. For N=2 one finds a1=2/5 and a3=1/30. And so on. I already found that a1→1/2 for N→∞. When I look at the numerical solutions, the other ai also seem to converge slowly, see the following plot:

agshku78.gif


But I cannot think of a way to find these values without resorting to numerics.

Cheers, Max
 
Last edited:
Physics news on Phys.org
onkel_tuca said:
But I cannot think of a way to find these values without resorting to numerics.
Your matrix is a so-called Vandermonde matrix. A lot is known about matrices of this type, so now you have a term to search for. Since in the second column the entries are all distinct, it can be explicitly inverted, see the references in the link. (Inverting the matrix may not be the best idea, however.)
 
  • Like
Likes   Reactions: onkel_tuca and jedishrfu
Thanks for the hint! This means I can rephrase the task to:

Find the polynomial
$$P(x)=a_1+a_3 x+a_5 x^2+...\;,$$
where
$$P(-l(l+1))=\frac 1 {2l+1}$$
for all natural l>0.
The sampling points are all on the curve
$$f(x)=\frac 1 {\sqrt{1-4x}}\;.$$
 
Last edited:

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 52 ·
2
Replies
52
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 14 ·
Replies
14
Views
3K
  • · Replies 34 ·
2
Replies
34
Views
3K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 27 ·
Replies
27
Views
3K