The Determinant and the Signature: Difference between revisions

From Knot Atlas
Jump to navigationJump to search
No edit summary
No edit summary
Line 40: Line 40:
{{InOut|
{{InOut|
n = 4 |
n = 4 |
in = <nowiki>{
in = <nowiki>{Equal @@ (Jones[#][q]& /@ {Knot[5, 1], Knot[10, 132]}), Equal @@ (Alexander[#][t]& /@ {Knot[5, 1], Knot[10, 132]})}</nowiki> |
Equal @@ (Jones[#][q]& /@ {Knot[5, 1], Knot[10, 132]}),
Equal @@ (Alexander[#][t]& /@ {Knot[5, 1], Knot[10, 132]})
}</nowiki> |
out= <nowiki>{True, True}</nowiki>}}
out= <nowiki>{True, True}</nowiki>}}
<!--END-->
<!--END-->

Revision as of 14:00, 30 August 2005


(For In[1] see Setup)

In[1]:= ?KnotDet
KnotDet[K] returns the determinant of a knot K.
In[2]:= ?KnotSignature
KnotSignature[K] returns the signature of a knot K.

Thus, for example, the knots 5_1 and 10_132 have the same determinant (and even the same Alexander and Jones polynomials), but different signatures:

In[3]:= KnotDet /@ {Knot[5, 1], Knot[10, 132]}
Out[3]= {5, 5}
In[4]:= { Equal @@ (Jones[#][q]& /@ {Knot[5, 1], Knot[10, 132]}), Equal @@ (Alexander[#][t]& /@ {Knot[5, 1], Knot[10, 132]}) }
Out[4]= {True, True}
In[5]:= KnotSignature /@ {Knot[5, 1], Knot[10, 132]}
Out[5]= {-4, 0}