Structure and Operations: Difference between revisions
From Knot Atlas
Jump to navigationJump to search
DrorsRobot (talk | contribs) No edit summary |
No edit summary |
||
Line 100: | Line 100: | ||
It is also nice to know that, as expected, the Jones polynomial of <math>K</math> is the square of the Jones polynomial of [[4_1]]: |
It is also nice to know that, as expected, the Jones polynomial of <math>K</math> is the square of the Jones polynomial of [[4_1]]: |
||
<!--$$Jones[K][q] == Expand[Jones[Knot[4,1]][q]^2]$$--> |
<!--$$Jones[K][q] == Expand[Jones[Knot[4,1]][q]^2]$$--> |
||
Line 109: | Line 108: | ||
out= <nowiki>True</nowiki>}} |
out= <nowiki>True</nowiki>}} |
||
<!--END--> |
<!--END--> |
||
{{Knot Image Pair|4_1|gif|8_9|gif}} |
|||
It is less nice to know that the Jones polynomial cannot tell <math>K</math> apart from the knot [[8_9]]: |
It is less nice to know that the Jones polynomial cannot tell <math>K</math> apart from the knot [[8_9]]: |
Revision as of 02:24, 3 September 2005
(For In[1] see Setup)
|
|
|
Thus here's one tautology and one easy example:
In[4]:=
|
Crossings /@ {Knot[0, 1], TorusKnot[11,10]}
|
Out[4]=
|
{0, 99}
|
And another easy example:
In[5]:=
|
K=Knot[6, 2]; {PositiveCrossings[K], NegativeCrossings[K]}
|
Out[5]=
|
{2, 4}
|
|
|
For example,
In[8]:=
|
PositiveQ /@ {X[1,3,2,4], X[1,4,2,3], Xp[1,3,2,4], Xp[1,4,2,3]}
|
Out[8]=
|
{False, True, True, True}
|
|
The connected sum of the knot 4_1 with itself has 8 crossings (unsurprisingly):
In[10]:=
|
K = ConnectedSum[Knot[4,1], Knot[4,1]]
|
Out[10]=
|
ConnectedSum[Knot[4, 1], Knot[4, 1]]
|
In[11]:=
|
Crossings[K]
|
Out[11]=
|
8
|
It is also nice to know that, as expected, the Jones polynomial of is the square of the Jones polynomial of 4_1:
In[12]:=
|
Jones[K][q] == Expand[Jones[Knot[4,1]][q]^2]
|
Out[12]=
|
True
|
4_1 |
8_9 |
It is less nice to know that the Jones polynomial cannot tell apart from the knot 8_9:
In[13]:=
|
Jones[K][q] == Jones[Knot[8,9]][q]
|
Out[13]=
|
True
|
But isn't equivalent to 8_9; indeed, their Alexander polynomials are different:
In[14]:=
|
{Alexander[K][t], Alexander[Knot[8,9]][t]}
|
Out[14]=
|
-2 6 2 -3 3 5 2 3
{11 + t - - - 6 t + t , 7 - t + -- - - - 5 t + 3 t - t }
t 2 t
t
|