Sunday, August 26, 2018

linear algebra - determinant of a tricky matrix



I'm doing a research on matrix integrators and I ran into a problem in one particular case. To finish my proof the last thing remaining is to prove the nonsingularity of a specific matrix Mn:(mij=1aiaj,1in,1jn,ij;mii=caib+ki,1kn1aiak),
where all ai,b are distinct.



To be more clear I provide M2=(ca1b+1a1a21a1a21a2a1ca2b+1a2a1)

M3=(ca1b+1a1a2+1a1a31a1a21a1a31a2a1ca2b+1a2a1+1a2a31a2a31a3a11a3a2ca3b+1a3a1+1a3a2)



For n7 I calculated the det(Mn)=c(c+1)...(c+n1)1in(aib), but I have no idea how to prove this in general case.



I my particular case cN, so this formula will prove the nonsingularity of Mn.




Any ideas and tips to prove the formula, or even to prove nonsingularity of Mn in some other way - are very appreciated


Answer



The answer is a development of ideas from the comments of amsmath. The decisive step forward is derivation of the equation (7) below.



Given a set of n pairs of complex numbers
{(x1,y2),(x2,y2),,(xn,yn)} such that
ij:xixj,
define its interpolating polynomial as

y(x)=iyikixxkxixk.



Differentiating the expression over x and evaluating the result at xi one obtains:
yiy(xi)=ji1xixj[yiyjk(i,j)xixkxjxk].
or

yikixixk=ji1xixj[yikixixk+yjkjxjxk].
Introducing fi=yikixixk, fi=yikixixk the equation (2a) can be rewritten in matrix notation as:
(i11x1xi1x1x21x1xn1x2x1i21x2xi1x2xn1xnx11xnx2in1xnxi)(i11x1xif1i11x1xif2i11x1xifn)=(i11x1xif1i11x1xif2i11x1xifn).
or
Af=f.




Assume now a special form of the interpolating polynomial:
$$
y_l(x)=(\lambda x+\beta)^l,\quad
\beta,\lambda\in\mathbb C,\,\lambda\ne 0;\; l\in\mathbb Z,\,0\le l$$

with corresponding f-vector components
fli=(λxi+β)lkixixk,fli=λl(λxi+β)l1kixixk.



Substituting the vectors fl and fl into (4) and multiplying both sides of the resulting equation from the left by diagonal matrix D with elements
Dii=λxi+β,
one obtains:
DAfl=λlfl.




From this one concludes that fl are the eigenvectors of the matrix DA with corresponding eigenvalues ϵl=λl. Observe that we have found all n (distinct) eigenvalues of the matrix.



Since the determinant of the matrix DA+Iz is characteristic polynomial of the matrix DA, one obtains:
det



It remains only to observe that A+D^{-1}z with \lambda=1, \beta=-b, z=c, x_i=a_i is exactly your matrix M.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f \colon A \rightarrow B and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...