Why to disconnect the negative/ground terminal, not positive?

There is no real inherent distinction between breaking one side of a loop or the other side- it's all in series so breaking the negative or the positive side of the supply keeps electrons from flowing.

When you have an electronic switch and are turning off part of the circuitry with other circuitry it's easier to break the negative - called a low side switch (requires fewer parts), but if some other circuitry remains connected, that may cause problems. For example, if I break the ground connection on a module, the 'input' pins may start sourcing current back to the controller (because otherwise they would have to go negative with respect to 'ground' on the module)- it won't necessarily switch the current off completely and it may even damage the controller or module in some situations.

Look at a few of the many answers on this site where people have tried this, failed and a high-side switch has been suggested. It comes up quite regularly.

If it's something completely isolated like a relay coil, most designers will use a low side switch because it's simpler and there is no advantage the other way. In cars, the chassis is used as a return, so high side is preferred if the load is remote. Here is a useful document on automotive applications.

Speaking of automotive, there is one particular situation worthy of mention where removing the negative connection is recommended for safety reasons- and that is when you are working on a car. Since the negative terminal is almost always connected very solidly to the chassis, if you try to remove the positive terminal with a (conductive) wrench/spanner and the tool touches the chassis hundreds of amperes will flow, causing the wrench to get red hot. Some people have left their wedding or other rings on and receive severe burns (to the point of possibly losing their finger) when the ring formed part of the circuit.

So take the negative terminal off first and put it on last if you are working on a car. And remove jewellery.


Most circuits that control switches are ground-referenced. It is therefore easier for them to drive a ground-based switch than a supply-based switch. The former is termed low side switching and the latter high side switching.

Both methods are perfectly valid. Like most things in engineering, it's a tradeoff. No, this is not a indication of the education level of the engineer. Good engineers evaluate lots of options, then choose the one that is the best fit for the particular design.

Low side switching is often chosen because it's usually simpler to achieve. In many cases, it doesn't matter whether the positive or negative power connection is broken. Good examples are driving a solenoid, relay, or LED.

When a circuit is more complex and has connections back to the driving circuit, then it's often worth the extra complexity of switching the power and keeping the ground always connected. For example, if you're switching the power to digital module with I/O lines back to your micro, it may be advantageous to keep both grounds connected permanently and switch the power to the module.

Again, everything is a tradeoff. There is no universal single right answer.


From the point of view of the circuit that is disconnected, it does not make any difference at all. There is no way that is better than the other.

Now, if is is disconnected/connected using an active device, e.g. a transistor, instead a simple mechanical switch, it starts making a difference. If you put the transistor between the circuit and its ground, you'd use a NPN transistor, which are usually cheaper than the equivalent PNP transistor. Same for NMOS/PMOS FETs. Moreover, in this case, you rarely need additional level shifting.

On the contrary, if you decide to break the circuit from the positive side, you'd use a PNP BJT or PMOS FET, which are more expensive, and it may require an additional level shifting stage if the load circuit is not powered by the same supply as the control circuit.

So, it is usually simpler to choose to break at the ground.