Questions: Catalan Numbers and Recursive Structures

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

You want to count the number of ways to triangulate a convex polygon with 5 vertices. A classmate argues the answer is 5! = 120, since there are 5 vertices and they can be chosen in any order. Which response best explains the error?

AThe classmate is right — 5! counts all valid triangulations of a pentagon
BThe answer is C₃ = 5, because every triangulation decomposes by choosing a triangle containing the base edge, splitting the remaining vertices into two independent sub-problems
CThe answer is 2ⁿ because each diagonal is either included or excluded
DThe classmate's formula is wrong because vertices are indistinguishable, so we divide by 5
Question 2 Multiple Choice

The generating function C(x) for Catalan numbers satisfies the equation xC(x)² − C(x) + 1 = 0. Why does the generating function satisfy a *quadratic* equation rather than a linear one?

ABecause C₀ = 1 and C₁ = 1 are both equal to 1, introducing quadratic symmetry
BBecause the Catalan recurrence is a convolution of two copies of the Catalan sequence, which corresponds to a product C(x)·C(x) in generating function language
CBecause Catalan numbers grow quadratically in magnitude
DBecause the closed form involves a square root, which always produces a quadratic equation
Question 3 True / False

The unifying reason Catalan numbers appear in counting binary trees, parenthesizations, and non-crossing matchings is that all these objects share the same recursive decomposition structure, not surface-level similarity.

TTrue
FFalse
Question 4 True / False

If a combinatorial problem produces the sequence 1, 2, 5, 14, 42, ... for n = 1, 2, 3, 4, 5, that is sufficient evidence that the problem is a Catalan number problem.

TTrue
FFalse
Question 5 Short Answer

Why does the Catalan recurrence Cₙ = Σᵢ₌₀ⁿ⁻¹ CᵢCₙ₋₁₋ᵢ involve a *product* of two Catalan numbers in each term, rather than a sum?

Think about your answer, then reveal below.