Fill a 2 × n grid with each integer from 1 to 2 n such that every cell with a neighboring cell above or to the left of it has a greater number in it than those neighbors.
If the number of ways to fill the grid this way is f ( n ) , then what is n → ∞ lim f ( n − 1 ) f ( n ) ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I love this problem, and @Patrick Corn 's answer says is all! @Patrick Corn
I wonder if this can be generalized to the m × n case? (Not just m × 2 )
Using Hook-Length Formula, we find that the generalised value of n → ∞ lim f ( m , n − 1 ) f ( m , n ) = m m .
@Hector Ricardez I noticed that you liked this problem. Can you tell me how did you do that since the like function was removed?
Log in to reply
Not sure... Did I?
Log in to reply
Log in to reply
@X X – Definitely... If you figure out how let me know... I like to give problems the credit they deserve! 😃
Log in to reply
@Geoff Pilling – I'll try to ask them!
@Geoff Pilling – @Geoff Pilling The android app, it's still there...(Great thanks to Hector Ricardez)
In the Android app it's still there
Problem Loading...
Note Loading...
Set Loading...
It turns out that f ( n ) = n + 1 1 ( n 2 n ) , the n th Catalan number . To see this, we produce a bijection between filled grids and valid parenthetical expressions with n left parentheses and n right parentheses. It is well-known that the latter is counted by the Catalan numbers (see the wiki for a proof).
The bijection is very straightforward: given a filled grid, place the left parentheses in the positions given by the numbers in the top row (which must be in ascending order reading from left to right), and the right parentheses in the positions given by the numbers in the bottom row (which must be in ascending order reading from left to right). It should be clear how to go back and forth between filled grids and parenthetical expressions. For example, the expression ( ( ) ( ) ( ) ) corresponds to the grid 1 3 2 5 4 7 6 8 .
The point is that a valid parenthetical expression must have the property that the k th left parenthesis comes before the k th right parenthesis, for every k . This shows that every number in the bottom row of the corresponding grid is larger than its upstairs neighbor, and the numbers in each row are already in ascending order by construction, so a valid parenthetical expression corresponds to a grid with the given property. The converse is just as clear.
Finally, we have n → ∞ lim f ( n − 1 ) f ( n ) = n → ∞ lim n + 1 4 n − 2 = 4 .