Cheapest Test First: Diagnostic Sequencing

Why this matters

The order you run your tests in decides how long the call takes and how much it costs. Tearing into a system to chase a hard-to-reach component, only to find the real problem was a tripped switch you could have checked in ten seconds, is pure waste. Cheapest-test-first sequencing means you spend your easy tests before your expensive ones, so most faults fall out before you ever open the hard stuff. It is the difference between a thirty-minute call and a three-hour one.

What "cheap" and "expensive" mean here

Cost is not just money. Rank each possible test by total effort to perform it:

  • Time to set up and run the test.
  • Access required - is the suspect at your fingertips or behind a teardown?
  • Risk of damaging something or creating a hazard to test it.
  • Reversibility - can you undo it easily, or are you committed once you start?

A cheap test is fast, accessible, safe, and reversible. An expensive test is slow, buried, risky, or hard to undo. Always reach for the cheap ones first, regardless of how likely each suspect feels.

Weigh cost against likelihood

The smart order is not purely cheapest-first or likeliest-first - it is the best balance of the two. For each suspect, weigh how likely it is against how cheap it is to test, and start where that ratio is best.

  • A cheap test of a likely cause is the obvious first move - do it immediately.
  • A cheap test of an unlikely cause is still worth doing early if it takes seconds, because ruling it out costs nothing.
  • An expensive test of a likely cause waits until the cheap tests are exhausted.
  • An expensive test of an unlikely cause is last, or never.

The standard cheap-first sequence

Most diagnoses should walk roughly this order before touching anything buried:

  1. Look. A visual scan for obvious damage, leaks, loose connections, burned spots, wrong positions. Free and often decisive.
  2. Listen and smell. Unusual noise, a burning odor, hissing. Your senses are zero-cost instruments.
  3. Check the simple and obvious. Power present, switches on, supply available, settings correct, the device actually turned on. An embarrassing number of "complex" faults end here.
  4. Check the easy-access points. Readings and observations you can take without disassembly.
  5. Test mid-system to isolate which half holds the fault (see related: divide and conquer).
  6. Then, and only then, open the hard stuff - teardown, buried components, anything risky or hard to reverse.

Why this beats jumping to the "probable" part

Experienced techs develop strong hunches, and those hunches are often right. But a hunch about an expensive-to-test component should still wait behind the ten-second checks, because:

  • The cheap checks might prove the hunch wrong before you waste an hour confirming it.
  • The cheap checks sometimes reveal the hunch is a symptom of something simpler upstream.
  • Even if the hunch is right, you lose almost nothing by spending two minutes on the easy stuff first.

Jumping straight to the buried "probable" cause is how techs end up reassembling a system to go back and check the breaker.

Don't skip the dumb stuff

The most expensive diagnostic mistakes are usually the simplest things skipped: a switch off, a supply valve closed, a setting wrong, a plug loose, a reset never done. Pride makes techs assume "it can't be that simple." It frequently is. Check the dumb stuff first, every time, even when you are sure. It costs seconds and saves hours.

References

  • Trade-standard diagnostic-sequencing and cost-of-test practice.
  • OSHA guidance on visual inspection and safe testing order.
  • See related: Divide and Conquer, Measure Don't Guess.