Andromeda
Note

Multiplication Principle

Definition

If a task can be broken down into a sequence of kk stages, where stage 1 has n1n_1 outcomes, stage 2 has n2n_2 outcomes, and so on, the total number of ways to complete the sequential task is the product of the number of options at each stage: N=n1n2nkN = n_1 \cdot n_2 \cdot \dots \cdot n_k How to read: “The total N equals n one times n two, continuing to n k.” Meaning / when to use: Used when choices are made sequentially and independently. Each decision stage multiplies the state space of possible outcomes.

Why It Matters

It is the foundational axiom of combinatorics and probability, serving as the basis for calculating permutations, combinations, and the state-space complexity of algorithms and security systems (like password strength).

Core Concepts

  • Sequential Choices: The stages must occur in sequence (first choose AA, then choose BB).
  • Independence: The number of choices at subsequent stages must not depend on the specific choices made in previous stages (though the choices themselves might differ).
  • Product Rule: The total outcomes grow geometrically as the number of sequential stages increases.

Connected Concepts