The Multivariable Alexander Polynomial: Difference between revisions

From Knot Atlas
Jump to navigationJump to search
No edit summary
No edit summary
Line 18: Line 18:


<!--$$mva = MultivariableAlexander[Link[8, Alternating, 21]][t] /. {
<!--$$mva = MultivariableAlexander[Link[8, Alternating, 21]][t] /. {
t[1] -> t1, t[2] -> t2, t[3] -> t3, t[4] -> t4
t[1] -> t1, t[2] -> t2, t[3] -> t4, t[4] -> t3
}$$-->
}$$-->
<!--Robot Land, no human edits to "END"-->
<!--Robot Land, no human edits to "END"-->

Revision as of 15:52, 5 September 2005


(For In[1] see Setup)

In[2]:= ?MultivariableAlexander
MultivariableAlexander[L][t] returns the multivariable Alexander polynomial of a link L as a function of the variable t[1], t[2], ..., t[c], where c is the number of components of L.
In[3]:= MultivariableAlexander::about
The multivariable Alexander program was written by Dan Carney at the University of Toronto in the summer of 2005.
L8a21.gif
L8a21

The link L8a21 is symmetric under cyclic permutations of its components but not under interchanging two adjacent components. It is amusing to see how this is reflected in its multivariable Alexander polynomial:

In[4]:= mva = MultivariableAlexander[Link[8, Alternating, 21]][t] /. { t[1] -> t1, t[2] -> t2, t[3] -> t3, t[4] -> t4 }
Out[4]= -t1 - t2 + t1 t2 - t3 + t1 t3 + 2 t2 t3 - t1 t2 t3 - t4 + 2 t1 t4 + t2 t4 - t1 t2 t4 + t3 t4 - t1 t3 t4 - t2 t3 t4
In[5]:= mva - (mva /. {t1->t2, t2->t3, t3->t4, t4->t1})
Out[5]= -(t1 t2) + t2 t3 + t1 t4 - t3 t4
In[6]:= mva - (mva /. {t1->t2, t2->t1})
Out[6]= -(t1 t3) + t2 t3 + t1 t4 - t2 t4

There are 11 links with up to 11 crossings whose multivariable Alexander polynomial is . Here they are:

In[7]:= Select[AllLinks[], (MultivariableAlexander[#][t] == 0) &]
Out[7]= {Link[9, NonAlternating, 27], Link[10, NonAlternating, 32], Link[10, NonAlternating, 36], Link[10, NonAlternating, 107], Link[11, NonAlternating, 244], Link[11, NonAlternating, 247], Link[11, NonAlternating, 334], Link[11, NonAlternating, 381], Link[11, NonAlternating, 396], Link[11, NonAlternating, 404], Link[11, NonAlternating, 406]}