Lightly Documented Features: Difference between revisions
From Knot Atlas
Jump to navigationJump to search
DrorsRobot (talk | contribs) No edit summary |
No edit summary |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 6: | Line 6: | ||
<!--Robot Land, no human edits to "END"--> |
<!--Robot Land, no human edits to "END"--> |
||
{{HelpLine| |
{{HelpLine| |
||
n = |
n = 2 | |
||
in = <nowiki>NumberOfKnots</nowiki> | |
in = <nowiki>NumberOfKnots</nowiki> | |
||
out= <nowiki>NumberOfKnots[ |
out= <nowiki>NumberOfKnots[n] returns the number of knots with n crossings. |
||
NumberOfKnots[n, Alternating|NonAlternating] returns the number of knots of the specified type.</nowiki>}} |
|||
<!--END--> |
<!--END--> |
||
Line 14: | Line 15: | ||
<!--Robot Land, no human edits to "END"--> |
<!--Robot Land, no human edits to "END"--> |
||
{{InOut| |
{{InOut| |
||
n = |
n = 3 | |
||
in = <nowiki>NumberOfKnots[16, NonAlternating]</nowiki> | |
in = <nowiki>NumberOfKnots[16, NonAlternating]</nowiki> | |
||
out= <nowiki>1008906</nowiki>}} |
out= <nowiki>1008906</nowiki>}} |
||
<!--END--> |
<!--END--> |
||
<!--$$? |
<!--$$?AlternatingQ$$--> |
||
<!--Robot Land, no human edits to "END"--> |
<!--Robot Land, no human edits to "END"--> |
||
{{HelpLine| |
|||
{{HelpAndAbout| |
|||
n = |
n = 4 | |
||
⚫ | |||
n1 = 4 | |
|||
out= <nowiki>AlternatingQ[D] returns True iff the knot/link diagram D is alternating.</nowiki>}} |
|||
⚫ | |||
out= <nowiki>MorseLink[K] returns a presentation of the oriented link K, composed, in successive order, of the following 'events': Cup[m,n] is a directed creation, starting at strand position n, towards position m, where m and n differ by 1. X[n,a = {Over/Under}, b = {Up/Down}, c={Up/Down}] is a crossing with lower-left edge at strand n, a determines whether the strand running bottom-left to top-right is over/under the crossing, b and c give the directions of the bottom-left and bottom-right strands respectively through the crossing. Cap[m,n] is a directed cap, from strand m to strand n.</nowiki> | |
|||
about= <nowiki>MorseLink was added to KnotTheory` by Siddarth Sankaran at the University of Toronto in the summer of 2005.</nowiki>}} |
|||
<!--END--> |
<!--END--> |
||
Among the knots with up to 11 crossings, 564 are alternating and 238 are not: |
|||
<!--$$MorseLink[Knot[3, 1]]$$--> |
|||
<!--$$Total[AlternatingQ /@ AllKnots[{0,11}]]$$--> |
|||
<!--Robot Land, no human edits to "END"--> |
<!--Robot Land, no human edits to "END"--> |
||
{{InOut| |
{{InOut| |
||
n = 5 | |
n = 5 | |
||
in = <nowiki> |
in = <nowiki>Total[AlternatingQ /@ AllKnots[{0,11}]]</nowiki> | |
||
⚫ | |||
out= <nowiki>MorseLink[1 ? 2, 4 ? 3, X[2, Under, Up, Up], X[2, Under, Up, Up], |
|||
X[2, Under, Up, Up], 2 ? 1, 1 ? 2]</nowiki>}} |
|||
<!--END--> |
|||
<!--$$?DrawMorseLink$$--> |
|||
<!--Robot Land, no human edits to "END"--> |
|||
{{HelpAndAbout| |
|||
n = 6 | |
|||
n1 = 7 | |
|||
in = <nowiki>DrawMorseLink</nowiki> | |
|||
out= <nowiki>DrawMorseLink[L] returns a drawing of the knot or link L as a "Morse Link". For diagrams with a large number of crossings, it may be helpful to use one or both of the options as in DrawMorseLink[L, Gap -> g, ArrowSize -> as ], with 0 < as, g < 1, where g controls the amount of white space at each crossing, and as controls the size of the orientation arrows.</nowiki> | |
|||
about= <nowiki>DrawMorseLink was written by Siddarth Sankaran at the University of Toronto in the summer of 2005.</nowiki>}} |
|||
<!--END--> |
|||
<!--$$Show[DrawMorseLink[Link[11, Alternating, 548]]]$$--> |
|||
<!--Robot Land, no human edits to "END"--> |
|||
{{Graphics| |
|||
n = 9 | |
|||
in = <nowiki>Show[DrawMorseLink[Link[11, Alternating, 548]]]</nowiki> | |
|||
img= Lightly_Documented_Features_Out_8.gif | |
|||
⚫ | |||
<!--END--> |
<!--END--> |
Latest revision as of 17:24, 21 February 2013
(For In[1] see Setup)
|
In[3]:=
|
NumberOfKnots[16, NonAlternating]
|
Out[3]=
|
1008906
|
|
Among the knots with up to 11 crossings, 564 are alternating and 238 are not:
In[5]:=
|
Total[AlternatingQ /@ AllKnots[{0,11}]]
|
Out[5]=
|
238 False + 564 True
|