The Art of Electronics: Horowitz and Hill
If you are looking for a place to start learning circuit design, not just wiring an LED but understanding how board power is arranged, why the resistor in a transistor base changes everything about how a circuit behaves, and where the delay between two gates comes from, the main answer is the book The Art of Electronics. It was written by Paul Horowitz and Winfield Hill. The first edition appeared in 1980, the second in 2005, the third in 2015, and it is still the first thing anyone recommends to a person who wants to design circuits rather than assemble other people's designs. Below is a breakdown of the book: what is inside it, in what order to read it, and how to find out in advance whether it suits you. The roadmap the book fits best into is collected on the Circuit Design page.
Who the authors are, and why they wrote this book
Paul Horowitz is a physics professor at Harvard University who has taught electrical circuits for decades and delivered the lectures that produced several generations of engineers. Winfield Hill is a practicing engineer, co-founder of Seeq, a designer of analytical instruments, and a patent holder in analog measurement. The difference in their backgrounds matters for the book: Horowitz supplies the structure and the physics, Hill adds what only someone who has taken a board into production knows.
| Edition | Year | What to know |
|---|---|---|
| First | 1980 | The classic: analog, transistors, amplifiers, power |
| Second | 2005 | Rewritten, 25 years of new technology, more worked examples |
| Third | 2015 | Digital part greatly expanded: FPGAs, microprocessors, modern digital logic |
Comparing editions by date alone is pointless: the physical core of all three is essentially the same book. The difference is how much space goes to digital design and how carefully the things that used to be taken for granted are now spelled out.
What is inside, and why you would read it
This is not a book about assembling a circuit from a picture. It is about making decisions when there is no picture in front of you: how to choose a resistor, why a transistor does not turn on fully, how much load an output can drive, where noise comes from and what to do about it. These are the topics people most often turn a textbook to, and here is where each of them pays off in this project.
| Topic in the book | What it buys you in practice |
|---|---|
| Resistors, voltage dividers, Ohm's law, power | Calculating any circuit, from an indicator LED to a current limiter |
| Transistors as switches | Any digital circuit: gate, base, operating point |
| Op-amps and comparators | Analog input, ADC, amplification, filters |
| Power, regulators, noise and grounding | The most common causes of a device that flickers or hangs |
| Tri-state logic elements, bus capacitance | Data buses, and why a long bus stops working |
| Digital logic, counters, metastability | Everything you build in the logic simulator |
| FPGAs and microprocessors | Parts 3 and 4 of the course: Verilog and the Tang Nano 9K |
One detail people often miss: the book takes three levels equally seriously. Ohm's law is not dismissed as a formula on half a page but treated as a working tool. The transistor switch is worked out with an operating point calculation. And the digital part starts with the capacitance of a wire and with delay, because those are what explain why a circuit built from correctly wired gates still fails. For those effects see propagation delay and timing diagrams.
The order to read it in
Starting with the op-amp chapter usually ends with the book on the shelf for a second month. This order works.
- Signal physics and resistors. Voltage, current, resistance, dividers, Ohm's law, power in a resistor. This is the base; without it every circuit reads like hieroglyphs.
- The transistor as a switch. This is where the book pays for itself: an explanation of why a transistor still drops voltage across itself when it is on, and why that is fine.
- Power and noise. Decoupling, ground, interference. The practical chapter that saves weeks of debugging.
- The digital part. Logic, tri-state, buses, delays. Read it side by side with levels 1 to 16 of the course.
- FPGAs and microprocessors. For levels 30 to 47, and for anyone heading past the simulator toward real silicon.
You can check the base right here in this project: the number base converter for binary arithmetic, and binary math for the same thing with explanations. If you understand why a carry is needed in adder anatomy, the base is in place.
Where to get it, and how to check it suits you
Look for the book where you can browse it: university electronics collections, the Cambridge University Press catalogue, electronics shops, university digital libraries. Official translated editions exist as well, but the year and the translator listed in a catalogue card vary, so it is safer to go by the publisher than by the date.
A free alternative few people know about is the course MIT OpenCourseWare 6.002 Circuits and Electronics. Its program is built on the material of The Art of Electronics, and the lectures and assignments are open access. It is the best way to test your interest before buying anything.
You can tell whether this is your book from three signs. You like calculating, not just assembling. You want to know why a circuit fails rather than guess values. You are curious what sits inside a processor instead of only how to use one. If all three answers are yes, the book pays for the time you spend on it in the first week of reading.
Why is The Art of Electronics called the bible of electronics?
The book has survived three editions since 1980, and in each one the authors explain not just the principle but the practical side: how to pick a value, why the circuit fails on a breadboard, and what to do when the scope shows something you did not expect. Few textbooks carry that much detail.
Do I need to know how to solder to read the book?
No, not to follow the text and the figures. You will need a soldering iron if you want to repeat the examples: the second half of the book rests on measurements, and some of its conclusions cannot be checked without instruments.
Which edition should I start with?
Take whichever one you can get. The second edition of 2005 and the third of 2015 agree on the basics: voltage, current, resistors, transistors, op-amps. The third edition is broader on the digital side, with sections on FPGAs and microprocessors.
Where can I get the book legitimately?
A university library, electronics and electronic engineering sections of technical universities, the Cambridge University Press catalogue, brick-and-mortar electronics shops, and university digital libraries. There is also a free route: the MIT OpenCourseWare course 6.002 Circuits and Electronics, whose program is built on this book.
Check yourself
What does a two-resistor voltage divider give you?
The voltage at the midpoint follows the ratio of the values: Vout = Vin · R2 / (R1 + R2). It is used for indicators, for biasing, and for splitting a signal in two. As soon as you connect a load to the output the divider stops behaving like a divider: the source resistance appears in series with the bottom resistor.
Why does a transistor need a resistor in its base or gate circuit?
To limit the current. The driving output of a chip or a logic element does not deliver infinite current, and a transistor switched without a limiter operates outside its ratings. You size the resistor from two conditions: the drive current must be large enough, and the collector current must stay below the transistor maximum.
Why does the book spend so many pages on noise and grounding?
Because noise causes most of the failures that look like "logic misbehaving". Interference on the ground rail or the power line reaches every node of the circuit at once, and then you end up debugging the supply rather than the function. The low-level techniques in the book, ground layout, filtering, shielding, save more time than any amount of logic.
How this connects to the course
The book and the course levels cover the same territory from different sides. The course gives you a short path from Ohm's law to a processor; the book explains why each step was taken the way it was. If you have worked through the library and want to go deeper, start with this book and come back to the logic circuit simulator to test your experiments: the book explains, the simulator shows.
For the books on digital logic that usually come next, see books on circuitry and logic design. For what a person who reads such books does for a living, see the schematics engineer.