what is a motherboard
A motherboard is the large circuit board that physically connects every major component in a computer — the CPU, RAM, storage, graphics card, and power supply — and provides the electrical pathways that let them all communicate, making it the literal foundation that everything else in the system plugs into.
```flowchart
{
"rows": [
{ "type": "nodes", "items": [
{ "title": "Motherboard: the shared foundation", "sub": "every major component connects to it directly", "tone": "neutral" }
]},
{ "type": "arrow" },
{ "type": "group", "title": "Components plug in", "items": [
{ "title": "CPU socket", "sub": "processor seats here", "tone": "green" },
{ "title": "RAM slots", "sub": "memory modules", "tone": "green" },
{ "title": "PCIe slots", "sub": "graphics cards, expansion cards", "tone": "green" },
{ "title": "Storage connectors", "sub": "SSDs, hard drives", "tone": "green" }
]},
{ "type": "arrow" },
{ "type": "nodes", "items": [
{ "title": "Chipset + wiring coordinate all of it", "sub": "compatibility depends on the board, not just the parts", "tone": "orange" }
]}
]
}
```
**A motherboard's job is to be the shared electrical and physical foundation every other component depends on.** It carries the wiring — traces etched directly into the board — that lets the CPU talk to RAM, storage, and expansion cards, and it physically holds each component in a fixed, standardized position through sockets, slots, and connectors. Without a motherboard tying everything together, each component would simply be an isolated part with no way to exchange data or receive power.
```svg
```
| Motherboard element | Connects to | Determines |
|---|---|---|
| CPU socket | The processor | Which CPU generations physically and electrically fit |
| RAM slots | Memory modules | Maximum RAM capacity and supported speed |
| PCIe slots | Graphics cards, expansion cards | Number and bandwidth of add-in cards supported |
| Chipset | Everything else on the board | Overall connectivity: ports, storage lanes, features |
| Form factor | The case it fits into | Physical size and expansion room available |
**A motherboard's socket type is the single most important compatibility gate in building or upgrading a computer.** Each CPU is designed for a specific physical socket with a matching pin or contact layout, and a motherboard built for one socket generation generally cannot accept a CPU designed for a different one — this is why "which motherboard works with which CPU" is one of the first questions anyone building a computer has to answer, well before considering RAM, storage, or any other component.
**Motherboards come in different physical sizes, called form factors, which trade expansion room for a smaller overall footprint.** A larger form factor typically offers more RAM slots, more PCIe slots, and more connectors, suited to a full-size desktop case; smaller form factors fit into compact builds but sacrifice some of that expansion room — meaning the right form factor depends as much on the case and use case as it does on raw specifications.
**The motherboard's chipset, not just its slots and sockets, quietly governs what the rest of the board can actually do.** As covered separately, the chipset routes traffic to storage, USB, and expansion devices and sets limits on things like PCIe version and overclocking support — meaning two motherboards with an identical CPU socket and similar-looking slots can still differ substantially in real-world capability, purely based on which chipset variant sits at the center of the board.
Read the motherboard through a shared-foundation lens: no individual component, however powerful, does anything on its own — the motherboard is what turns a pile of separate parts into a single working system, and its socket, chipset, and layout quietly set the outer limits on what the rest of the machine is even capable of.