๐Ÿ”ข

Combinatorics Overview

Sep 20, 2025

Overview

This lecture introduces combinatorics, focusing on methods to count and arrange objects, including permutations, arrangements, and combinations, with and without repetition.

Introduction to Combinatorics

  • Combinatorics studies how many ways objects from a set can be arranged or selected.
  • Combinatorial calculus is the math branch dealing with arrangements of collections.

Simple Permutations

  • A simple permutation arranges n distinct objects in n boxes: the total ways is n ร— (n-1) ร— ... ร— 1 = n! (n factorial).
  • For 4 objects, simple permutations = 4! = 24.
  • Example: All possible anagrams of "Rome" (4 letters) total 24.

Permutations with Repetition

  • When identical objects are present, divide total permutations by the factorial of identical object counts.
  • Formula: n! / (kโ‚! ร— kโ‚‚! ร— ... ร— kแตฃ!), where kโ‚, kโ‚‚ ... are the number of identical objects of each type.
  • Example: For 7 balls (1 blue, 1 green, 3 purple, 2 orange), permutations = 7! / (3! ร— 2!) = 420.
  • Example: "MAMMA" anagrams = 5! / (3! ร— 2!) = 10.

Simple Arrangements (Arrangements without Repetition)

  • Arrangements (denoted Dโ‚™โ‚–) of n objects in k boxes, order matters: Dโ‚™โ‚– = n ร— (n-1) ร— ... ร— (n-k+1).
  • Simplified: Dโ‚™โ‚– = n! / (n-k)!.
  • Example: For "ROME", arranging 2 out of 4 letters: Dโ‚„โ‚‚ = 4! / 2! = 12.

Simple Combinations

  • Combinations count groups of k objects chosen from n, order does not matter.
  • Formula: Cโ‚™โ‚– = Dโ‚™โ‚– / k! = n! / (k! ร— (n-k)!).
  • The result Cโ‚™โ‚– is called the binomial coefficient ("n choose k").
  • Example: "ROME", 2-letter combinations = 12 / 2 = 6.

Arrangements with Repetition

  • Arrangements with repetition allow objects to be reused: number of ways is nแต.
  • Example: 4 marbles in 3 boxes, each marble can be chosen again: total = 4ยณ = 64.
  • For "ROME", 2-letter arrangements with repetition = 4ยฒ = 16.

Key Terms & Definitions

  • Permutation โ€” an arrangement of all the elements of a set.
  • Factorial (n!) โ€” product of all positive integers up to n.
  • Permutation with repetition โ€” arrangement where some objects repeat, accounting for identical items.
  • Arrangement (Disposition) โ€” ordered selection of k objects from n without reuse.
  • Combination โ€” selection of k objects from n where order does not matter.
  • Binomial coefficient (Cโ‚™โ‚–) โ€” the number of ways to choose k objects from n, not considering order.

Action Items / Next Steps

  • Practice problems: Calculate permutations, arrangements, and combinations for different n and k values.
  • Review definitions and formulas for factorial, arrangements, and combinations.