LESSON 2 · The Math of Choices
Why Hard Problems Stay Hard
Problems like the Traveling Salesman sit in a complexity class called NP-hard: as the input grows, the number of arrangements explodes faster than any computer can keep up, so an exact answer becomes hopeless for large cases.
Logistics companies don't even try for perfect. They use approximation algorithms that find routes within a few percent of optimal in seconds. The same explosion that defeats them also protects you in a different form: a 128-bit encryption key has 2¹²⁸ possible values — too many to brute-force before the sun dies. In computing, "too many to enumerate" is both the obstacle and the foundation of modern security.