“Splitting the dictionary” is a problem scoping technique of asking the right questions to eliminate as many incorrect possibilities as you can, thus focusing your root cause search in the right area. In the case of guessing a random word, it’s a binary search: “Does the word start with any of the letters A through M?” If yes, then, “Does the word start with any of the letters A through G?, etc. The quantity of possible starting letters is halved with each question. It’s certain to get the starting letter in 5 guesses (26 letters narrowed to 13, to 7, to 4,…). The word’s 2nd and 3rd letters are made easier to guess by supplementing the binary search with knowledge of the language (e.g., some letter combinations are never used, like bx).
Far too often, we’ve encountered issue resolution teams mired in complex testing or analysis. Do yourself a favor, before heading down a complicated, expensive route (e.g., a DOE, Monte Carlo Simulation, etc.) consider “What question could eliminate half (or at least a large percentage) of the potential causes?” “Is there a quick document review, analysis, or simple test that can reduce the scope of where we need to look?”
We have used this technique many times analyzing failed electrical assemblies. Consider an assembly that can be physically split between “input” and “output” sides. By taking the “input” side of the failed device and pairing it with a known-good “output” side (and vice versa), we can see in which mix-and-matched assembly the symptom persists and then focus attention there.
It’s worked for us in scoping the origination of defective parts in a manufacturing setting too, by asking, “Are there defective components coming in from our supplier?” A simple inspection can check the supply chain integrity. This separates supply chain concerns from internal manufacturing issues and allows the team to focus on one area and not both.
Effective scoping is key to efficient problem-solving. Once the problem is clearly defined, think of the root cause as a needle in a haystack. Before you start examining hay, first ask “Am I on the right farm?”, then, “Which haystack should I search?”, then “Which portion of the chosen haystack is most likely to contain the needle?” Scoping out the possibilities with a simple tool or test can radically accelerate progress toward identifying the root cause by eliminating complex, time-wasting activity.