The Intel 4004 was the first commercial general-purpose programmable microprocessor. Intel announced it on 15 November 1971 after a project with the Japanese calculator firm Busicom. It packed a whole 4-bit central processing unit onto a single chip. It was built for a calculator, yet designed to be reprogrammed for other tasks. That choice made it the ancestor of every processor in use today.

The Intel 4004 microprocessor
The Intel 4004 microprocessor. CC BY-SA 4.0 · Thomas Nguyen · source

What it was

A microprocessor is a complete central processing unit on one chip. The central processing unit, or CPU, is the part of a computer that fetches instructions, does arithmetic, and decides what happens next. Before 1971, that work spread across many separate chips and circuit boards. The 4004 put it all in one small package.

The 4004 worked with 4 bits at a time. A bit is a single 1 or 0. Four bits hold a number from 0 to 15, enough for one decimal digit. The chip read program instructions from memory, ran them in order, and did simple sums and logic. It held roughly 2,300 transistors and ran at a clock speed of several hundred kilohertz.

Think of an orchestra. Before the 4004, you needed a separate musician for every part, each on its own stand, wired together by hand. The 4004 shrank the whole ensemble into one tiny conductor that read a written score. Change the score, and the same chip played a different tune. That reprogrammable score is what made it general-purpose.

Step 1FetchThe chip reads the next instruction from program memory.
Step 2DecodeInternal logic works out which operation the instruction means.
Step 3ExecuteThe arithmetic unit adds, compares, or moves 4-bit values.
Step 4RepeatThe chip moves to the next instruction and runs the loop again.

This fetch-decode-execute loop is the heartbeat of the 4004. Every processor since, from a phone to a data-center accelerator, runs the same basic cycle.

Why it mattered

The 4004 proved a radical idea. You could build a useful computer around one cheap chip instead of a cabinet of wired components. That cut cost, size, and power, and it opened computing to products no one had imagined.

It also separated hardware from software. The same chip could run a calculator, a cash register, or a traffic controller. You changed the program, not the wiring. This split between a fixed processor and flexible code is the foundation of the whole software industry.

Intel built on the 4004 fast. The 8-bit 8008 followed, then the 8080, which powered early personal computers. That line led to the 8086 and the x86 architecture that still runs most desktops and servers. A small calculator contract grew into a trillion-euro industry.

How it connects to AI today

Every modern AI system rests on the idea the 4004 proved. A processor on a chip runs a program by fetching and executing instructions in a loop. Today that chip holds tens of billions of transistors, not 2,300, yet the core model is the same one Federico Faggin laid out in silicon in 1971.

The direct descendants are everywhere. The x86 line that started with the 4004 powers the servers that train and serve large language models. When you call an AI model over an API, your request lands on a fleet of CPUs descended from that family. They handle the orchestration, the networking, and the glue around the math.

The heavy AI math runs on a different but related kind of chip. Graphics processing units, or GPUs, and dedicated AI accelerators pack thousands of small processors onto one die. They are microprocessors specialised for the matrix multiplication inside a neural network. They share the 4004 lineage: cram a whole processing unit onto integrated silicon, then scale the transistor count. Moore’s Law named that scaling trend, and the 4004 was one of its first products.

A builder meets this heritage daily. Choose an instance type in the cloud, and you pick a count of CPU cores and a number of GPUs. Both are microprocessors. The tiny microcontrollers inside a smart sensor or an edge AI device are also direct heirs of the 4004, often still running small reprogrammable cores. The reprogrammable single chip is the unit of compute that all of modern AI is built from.

Still in use today

The 4004 itself is a milestone, not a working product. Intel ended its production in the 1980s. Collectors and museums keep original chips, and the design is documented and celebrated, but no current system uses a literal 4004.

What replaced it never went away. The single-chip microprocessor it pioneered is the most produced kind of device in history. Billions ship every year as CPUs, microcontrollers, GPUs, and AI accelerators. The 4-bit part is obsolete, yet the concept it introduced is more central to computing now than at any point since.

So the 4004 holds a permanent place. It is the first link in an unbroken chain of processors. You will not find one in a server rack today, but everything in that rack traces its design straight back to the chip Intel shipped in 1971.

Further reading