Combinations are a core concept in combinatorics, counting the number of ways to select items from a larger set when the order of selection does not matter. The combination formula C(n,r) = n!/(r!(n-r)!) gives the binomial coefficient, which appears throughout mathematics, from probability theory to polynomial expansions.
Pascal's triangle provides a visual representation of all binomial coefficients. Each row n contains the values C(n,0) through C(n,n), and the recursive property C(n,r) = C(n-1,r-1) + C(n-1,r) means each entry is the sum of the two entries above it. This elegant pattern connects to the binomial theorem (a+b)^n.
Combinations with repetition (multichoose) extend the concept to situations where items can be selected multiple times. The formula C(n+r-1, r) uses the stars and bars method and is essential in problems like distributing identical objects into distinct groups or counting multisets.