Perfect thermal contact

From formulasearchengine
Jump to navigation Jump to search

Template:Multiple issues

System of bilinear equations look like the following yTAix=gi for i=1,2,,r for some integer r where Ai are matrices and gi are some real numbers. These arise in many subjects like engineering, biology, statistics etc.

Solving in integers

We consider here the solution theory for bilinear equations in integers. Let the given system of bilinear equation be

ax1x2+bx1y2+cx2y1+dy1y2=αex1x2+fx1y2+gx2y1+hy1y2=β

This system can be written as

[abcdefgh][x1x2x1y2y1x2y1y2]=[αβ]

Once we solve this linear system of equations then by using rank factorization below, we can get a solution for the given bilinear system.

mat([x1x2x1y2y1x2y1y2])=[x1x2x1y2y1x2y1y2]=[x1y1][x2y2]

Now we solve first equation by using smith normal form, given any m×n matrix A, we can get two matrices U and V in SLm() and SLn(), respectively such that UAV=D, where D is as follows:

D=[d10000d200ds00000]m×n

where di>0 and di|di+1 for i=1,2,,s1. It is immediate to note that given a system Ax=b, we can rewrite it as Dy=c, where Vy=x and c=Ub. Solving Dy=c is easier as the matrix D is somewhat diagonal. Since we are multiplying with some nonsingular matrices we have the two system of equations to be equivalent in the sense that the solutions of one system have one to one correspondence with the solutions of another system. We solve Dy=c, and take x=Vy. Let the solution of Dy=c is

y=[a1b1st]

where s,t are free integers and these are all solutions of Dy=c. So, any solution of Ax=b is Vy. Let V be given by

V=[a11a12a13a14a21a22a23a24a31a32a33a34a41a42a43a44]=[A1B1C1D1]

Then x is

M=mat(x)=[a11a1+a12b1+a13s+a14ta31a1+a32b1+a33s+a34ta21a1+a22b1+a23s+a24ta41a1+a42b1+a43s+a44t]

We want matrix M to have rank 1 so that the factorization given in second equation can be done. Solving quadratic equations in 2 variables in integers will give us the solutions for a bilinear systems. This method can be extended to any dimension, but at higher dimension solutions become more complicated. This algorithm can be applied in Sage or Matlab to get to the equations at end.

References