 <?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tedyun.com/index.php?action=history&amp;feed=atom&amp;title=Permutation_RSK_distribution</id>
	<title>Permutation RSK distribution - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tedyun.com/index.php?action=history&amp;feed=atom&amp;title=Permutation_RSK_distribution"/>
	<link rel="alternate" type="text/html" href="https://wiki.tedyun.com/index.php?title=Permutation_RSK_distribution&amp;action=history"/>
	<updated>2026-04-25T18:25:29Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.10</generator>
	<entry>
		<id>https://wiki.tedyun.com/index.php?title=Permutation_RSK_distribution&amp;diff=8&amp;oldid=prev</id>
		<title>Tedyun: Created page with &quot;== Overview ==  * For a given $n$, find a probability that this number $n$ will end up in the position $(i,j)$ ($i$-th row and $j$-th column) in the insertion tableau via RSK ...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.tedyun.com/index.php?title=Permutation_RSK_distribution&amp;diff=8&amp;oldid=prev"/>
		<updated>2012-12-04T01:17:08Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Overview ==  * For a given $n$, find a probability that this number $n$ will end up in the position $(i,j)$ ($i$-th row and $j$-th column) in the insertion tableau via RSK ...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
* For a given $n$, find a probability that this number $n$ will end up in the position $(i,j)$ ($i$-th row and $j$-th column) in the insertion tableau via RSK algorithm.&lt;br /&gt;
* Dually, compute the expectation value of the number that ends up in a given position $(i,j)$.&lt;br /&gt;
* Originally from http://mathoverflow.net/questions/82353/permutations-stopping-times-bessel-functions-hook-formula-and-robinson-schenst&lt;br /&gt;
&lt;br /&gt;
== Some Results ==&lt;br /&gt;
&lt;br /&gt;
Let $f_n(i,j)$ be the total number of permutations $p$ in $S_n$ such that the $P$-tableau of $p$ under RSK has $n$ in $(i,j)$-position.&lt;br /&gt;
(then $\sum_{i,j} f_n(i,j) = n!$ and $f_n(i,j)/n!$ is the probability that $n$ is in the $(i,j)$-position in the $P$-tableau of a permutation in $S_n$.)&lt;br /&gt;
&lt;br /&gt;
Let $F(i,j)$ be the expected value of the number that eventually lands at $(i,j)$ position in the insertion tableau via RSK, over all permutations in $S_n$ as $n$ goes to infinity.&lt;br /&gt;
&lt;br /&gt;
* $f_n(i,j) = 0$ if $n &amp;gt; ij$ (trivial)&lt;br /&gt;
* $f_n(1,2) = n – 1$ (easy)&lt;br /&gt;
* $f_n(1,3) = \binom{2n-2}{n-3}$ (http://oeis.org/A002694)&lt;br /&gt;
* $f_n(2,2) = n \binom{2n-4}{n-4}$&lt;br /&gt;
* $f_n(2,2) = n f_{n-1}(1,3)$ which implies $F(2,2) = F(1,3) + 1$.&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
&lt;br /&gt;
* Want a bijection $\phi$: {permutations in $S_n$ whose $(2,2)$-entry is $n$} $\longrightarrow$ {permutations in $S_n$ whose $(1,3)$-entry is $n-1$}.&lt;br /&gt;
* $f_n(k,k) = n f_{n-1}(k-1,k+1)$&lt;br /&gt;
&lt;br /&gt;
== Numerical Results ==&lt;br /&gt;
&lt;br /&gt;
RSK_dist(2); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 1], [1, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(3); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 2, 1], [2, 0, 0], [1, 0, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(4); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 3, 6, 1], [3, 4, 0, 0], [6, 0, 0, 0], [1, 0, 0, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(5); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 4, 28, 12, 1], [4, 30, 0, 0, 0], [28, 0, 0, 0, 0], [12, 0, 0,&lt;br /&gt;
0, 0], [1, 0, 0, 0, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(6); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 5, 120, 105, 20, 1], [5, 168, 25, 0, 0, 0], [120, 25, 0, 0, 0,&lt;br /&gt;
0], [105, 0, 0, 0, 0, 0], [20, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(7); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 6, 495, 830, 276, 30, 1], [6, 840, 462, 0, 0, 0, 0], [495, 462,&lt;br /&gt;
0, 0, 0, 0, 0], [830, 0, 0, 0, 0, 0, 0], [276, 0, 0, 0, 0, 0, 0],&lt;br /&gt;
[30, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(8); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 7, 2002, 6321, 3332, 595, 42, 1], [7, 3960, 5684, 196, 0, 0, 0,&lt;br /&gt;
0], [2002, 5684, 0, 0, 0, 0, 0, 0], [6321, 196, 0, 0, 0, 0, 0, 0],&lt;br /&gt;
[3332, 0, 0, 0, 0, 0, 0, 0], [595, 0, 0, 0, 0, 0, 0, 0], [42, 0, 0,&lt;br /&gt;
0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(9); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 8, 8008, 47544, 38108, 10024, 1128, 56, 1], [8, 18018, 59616,&lt;br /&gt;
7056, 0, 0, 0, 0, 0], [8008, 59616, 1764, 0, 0, 0, 0, 0, 0], [47544,&lt;br /&gt;
7056, 0, 0, 0, 0, 0, 0, 0], [38108, 0, 0, 0, 0, 0, 0, 0, 0], [10024,&lt;br /&gt;
0, 0, 0, 0, 0, 0, 0, 0], [1128, 0, 0, 0, 0, 0, 0, 0, 0], [56, 0, 0,&lt;br /&gt;
0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0]]&lt;br /&gt;
&lt;br /&gt;
RSK_dist(10); &lt;br /&gt;
       	&lt;br /&gt;
[[0, 9, 31824, 357000, 427392, 156780, 25104, 1953, 72, 1], [9,&lt;br /&gt;
80080, 579069, 158112, 1764, 0, 0, 0, 0, 0], [31824, 579069, 70560,&lt;br /&gt;
0, 0, 0, 0, 0, 0, 0], [357000, 158112, 0, 0, 0, 0, 0, 0, 0, 0],&lt;br /&gt;
[427392, 1764, 0, 0, 0, 0, 0, 0, 0, 0], [156780, 0, 0, 0, 0, 0, 0,&lt;br /&gt;
0, 0, 0], [25104, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1953, 0, 0, 0, 0, 0,&lt;br /&gt;
0, 0, 0, 0], [72, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0,&lt;br /&gt;
0, 0, 0]]&lt;/div&gt;</summary>
		<author><name>Tedyun</name></author>
	</entry>
</feed>