We define a bijection between permutations in and increasing binary trees on vertices.
Suppose we have some . We shall iteratively construct a tree as follows:
Find the smallest number in . Make that the root , and everything to the left of it will be and to the right will be .
Then, create a tree by connecting as the left child of and the right child of
Example:
You might notice that the reading order of the tree will be equal to , which is how you construct the inverse to this operation.
To conclude the statement, we have to show the following: If , then the number of descents of is equal to the number of left edges of .
Sketch: If some vertex with parent has no left child, then in the permutation will be next to each other in that order, and this will create an ascent (since ). Thus, we have a correspondence between no left edges and ascents. In other words, if there is a left edge, then we have a descent.