0

I find combinatoric algebra very non-intuitive. I'm talking about Pascal's Identity $n\geq r$, $$ \binom{n+1}{r}=\binom{n}{r}+\binom{n}{r-1}. $$

I understand the tedious proof of the theorem but what's a trick for understanding combinatoric algebra in general? I can't eyeball and decompose a binomial without memorizing the formulas or doing tedious factorial multiplication and division.

It's never obvious how combinatoric algebra works:

EXample: enter image description here

2 Answers2

1

For the second one:
You want to partition $\{1,2,\cdots ,n,n+1\}$ into $m+1$ non empty blocks(RHS). What if you first take out the elements that are in the block of $n+1$(Say there are $k$ elements) and then you partition the rest?(LHS)

I agree, "combinatorial algebra" is hard but that's why combinatorics uses two powerful concepts: Intuition on the combinatorial description (with interesting principles as sum, multiplication and bijection) and generating functions.

Phicar
  • 14,827
  • combinatorics have to do with cardinality and functions? –  Jul 15 '17 at 18:27
  • Yes, indeed. Define the numbers $n$ as cardinals of the set $[n]={1,2,\cdots ,n}.$ For example, $\binom{n}{k}=|\binom{[n]}{k}|,$ where $$\binom{[n]}{k}={A\subseteq [n]:|A|=k}.$$ Which encodes the notion of choose $k$ from $n$. – Phicar Jul 15 '17 at 19:39
0

Guide:

Your goal is to pick $r$ items form $n+1$ items.

suppose you pick the first item, how many more items do you still have to pick?

what if you did not pick the first item?

Siong Thye Goh
  • 153,832