a failure mode
A failure mode is a specific, recognizable way that a circuit goes wrong. The encouraging news for a beginner is that hardware does not fail in infinite mysterious ways — most bench failures are a small cast of usual suspects that show up again and again. Learning to recognize them on sight turns debugging from a fog into a checklist: when something is broken, you run through the common modes first, because the odds are overwhelming that you are looking at one of them.
Here are the recurring ones, with their telltale signs. Reversed polarity: a part installed backwards or the supply connected the wrong way — often a diode, electrolytic capacitor, or chip that runs hot, refuses to work, or fails outright. Cold solder joint: a dull, cracked, or never-quite-melted joint that makes intermittent contact, so the circuit works until you flex or tap the board. Wrong value: a 10 kΩ where 1 kΩ belonged, or a misread color code, giving a result that is in the right ballpark but plainly off. Oscillation: a circuit that should be quiet instead hums or buzzes because feedback turned an amplifier into an accidental oscillator. Brownout: the supply voltage sags under load until a chip resets or misbehaves. Thermal: a part getting too hot, sometimes running away as heat lowers its resistance and pulls yet more current.
Why it matters: a mental library of failure modes is what makes an experienced engineer fast — they smell a cold joint or a brownout from the symptoms before touching a meter. The honest framing is that these are patterns, not certainties: the same symptom can have more than one cause, and rare faults do exist. But starting with the common modes, and confirming with a measurement rather than assuming, finds the great majority of problems quickly. When you suspect a mode, the datasheet and a targeted measurement turn the hunch into proof.
A board works on the bench but resets whenever a motor starts. That symptom points straight at a brownout: the motor's inrush current sags the shared supply below the microcontroller's minimum, and it restarts. Recognizing the mode tells you the cure — a stiffer supply, a separate rail, or more bulk and decoupling capacitance — without random part swaps.
A short cast of usual suspects — reversed, cold joint, wrong value, oscillation, brownout, thermal.
Failure modes are likelihoods, not certainties: the same symptom can have several causes, and a rare fault is always possible. Start with the common modes, but confirm with a measurement instead of assuming you already know which one it is.