MethodMath
Ask
Join
HomeTopicsAskAlerts
Profile

© 2026 MethodMath. Built for mathematical knowledge sharing.

AboutContactGuidelinesPrivacyTermsCookies
David Kim
May 10, 2026

How to count Catalan numbers and identify their combinatorial interpretations?

I am studying combinatorics and I am fascinated by Catalan numbers. The nnn-th Catalan number is:

Cn=1n+1(2nn)C_n = \frac{1}{n+1} \binom{2n}{n}Cn​=n+11​(n2n​)

The first few are: 1, 1, 2, 5, 14, 42, 132, 429, ...

My questions:

  1. How is the formula derived from the recurrence relation Cn=∑i=0n−1CiCn−1−iC_n = \sum_{i=0}^{n-1} C_i C_{n-1-i}Cn​=∑i=0n−1​Ci​Cn−1−i​?
  2. What are the most common combinatorial interpretations of Catalan numbers?
  3. How many valid sequences of nnn pairs of parentheses are there? (e.g., for n=3n = 3n=3: ((())), (()()), (())(), ()(()), ()()() — 5 ways)
  4. How many binary trees with nnn nodes exist?
  5. How many ways can a convex (n+2)(n+2)(n+2)-gon be triangulated?
  6. How does the generating function C(x)=∑CnxnC(x) = \sum C_n x^nC(x)=∑Cn​xn lead to the closed form?

I want to understand the deep connections.

1 answers438 views

1 Answer

3
David Kim
May 10, 2026
Accepted
**Recurrence to Closed Form:** Catalan numbers satisfy $C_0 = 1$ and $C_n = \sum_{i=0}^{n-1} C_i C_{n-1-i}$. Let $C(x) = \sum_{n=0}^{\infty} C_n x^n$ be the generating function. The recurrence gives: $$C(x) = 1 + x C(x)^2$$ Solving: $x C(x)^2 - C(x) + 1 = 0 \Rightarrow C(x) = \frac{1 - \sqrt{1 - 4x}}{2x}$. Expanding $\sqrt{1 - 4x}$ using the binomial theorem gives the closed form: $$C_n = \frac{1}{n+1} \binom{2n}{n}$$ **Combinatorial Interpretations (all counted by $C_n$):** | Interpretation | Example for $n = 3$ | |---|---| | Valid parentheses ($n$ pairs) | ((())), (()()), (())(), ()(()), ()()() | | Binary trees with $n$ nodes | 5 distinct trees | | Triangulations of $(n+2)$-gon | 5 ways to triangulate a pentagon | | Dyck paths of length $2n$ | Paths from $(0,0)$ to $(2n,0)$ staying above diagonal | | Non-crossing partitions of $\{1,\ldots,n\}$ | 5 partitions | | Stack-sortable permutations of length $n$ | 5 permutations | **Parentheses example ($n = 3$):** A sequence of $n$ opening and $n$ closing parentheses is valid if at any prefix, #($\geq$ #). This is exactly a Dyck path: $\uparrow$ for "(", $\downarrow$ for ")". **Binary trees:** A binary tree with $n$ nodes: pick $i$ nodes for the left subtree ($0 \leq i \leq n-1$), the remaining $n-1-i$ go to the right. This gives $C_n = \sum C_i C_{n-1-i}$. **Triangulations of a convex $(n+2)$-gon:** Pick one triangulation, fix edge $(1, n+2)$, and the third vertex $k$ of the triangle containing it splits the polygon into a $k$-gon and an $(n+3-k)$-gon, giving the recurrence. These many interpretations make Catalan numbers one of the most ubiquitous sequences in combinatorics.
Still unsure? Join to comment or ask a follow-up.
Login or Register to post your answer

Suggested questions

Why does 0 factorial equal 1 instead of 0? Simple proof

31.4k

Can someone explain Hilbert's hotel paradox simply?

24k

How many squares are actually in an 8 by 8 chessboard?

22.2k

Does the Banach-Steinhaus theorem hold for non-complete normed spaces?

31.1k

Do I need Calculus 3 before learning Fourier series?

3497