What Is RAM? A Plain-English Guide
Ever seen "16 GB of RAM" on a computer's box and had no idea if that's a lot or a little? This article is for you.
If you've ever seen "16 GB of RAM" on a computer's box and had no idea whether that's a lot or a little, this article is for you. RAM is one of the components that most influences whether your computer runs smoothly or stutters, and understanding it doesn't require any prior knowledge.
The simple explanation
Picture your computer as a desk with a filing cabinet next to it. The filing cabinet is your hard drive or SSD: that's where all your files and programs are stored permanently, even after you turn the computer off. The desk is RAM: the space where you literally put whatever you're using at this exact moment.
When you open a program, the computer "pulls" it out of the filing cabinet (the drive) and puts it on the desk (RAM) so it can work with it instantly. The bigger the desk, the more things you can have open at once without them getting in each other's way. If the desk runs out of room, the computer has to keep putting things away and pulling them back out of the filing cabinet constantly, which is much slower — and that's exactly what you feel as slowness.
Note: unlike the drive, RAM empties completely every time you turn the computer off — that's why, if you were writing a document without saving it and the power goes out, you lose it: it was only on the "desk," not in the "filing cabinet."
How it affects performance
When RAM fills up because you have too many programs open at once, the computer starts using part of the drive as emergency RAM (this is called virtual memory). It works, but it's much slower than real RAM, and it's the most common reason a computer with "everything open" starts to stutter.
Tip: if your computer runs fine right after starting up but gets slower as the day goes on with lots of tabs and programs open, that's a pretty clear sign you're short on RAM for how you use it, rather than a problem with the computer itself.
How much RAM you need based on your use
There's no universal number — it depends on what you use the computer for. As a rough guide:
| Main use | Recommended RAM |
|---|---|
| Browsing, email, office documents | 8 GB |
| Multiple tabs, video calls, light editing | 16 GB |
| Video/photo editing, demanding games | 32 GB |
| Programming, virtual machines, heavy professional tasks | 32-64 GB |
How to check how much RAM your computer has
The simplest way: open Task Manager (Ctrl + Shift + Esc) and look at the "Performance" tab → "Memory." There you'll see how much total RAM you have and how much you're using right now.
If you'd rather do a quick check via command:
# See total installed RAM, in gigabytes
Get-CimInstance Win32_PhysicalMemory | Measure-Object -Property Capacity -Sum | ForEach-Object { [math]::Round($_.Sum / 1GB, 2) }
Warning: installing more RAM yourself means opening the computer's case and handling internal components. If you don't feel confident doing it, it's better to have a professional do it — a badly seated module usually doesn't break anything, but it can stop the computer from starting until it's fixed.
What if the problem isn't RAM?
Before buying more memory, it's worth ruling out other causes. Our guide on why Windows runs slow covers the most common causes, RAM included but not the only one.
If you came across terms like "virtual memory" or "storage" in this article and they didn't quite ring a bell, our beginner's computer glossary explains them all at a calm pace.
Frequently asked questions
Is RAM the same as storage?
No. RAM is temporary memory for what you're using right now, and it empties when you turn the computer off. Storage (hard drive or SSD) keeps your files permanently, whether you're using them at any given moment or not.
Does more RAM make the computer start up faster?
It has little influence on startup itself; there, the most important factor is whether you have an SSD or a mechanical hard drive. RAM is noticed mostly once you already have several programs open at the same time.
Can I have too much RAM for what I need?
Technically yes, in the sense that you won't notice any further improvement once you have plenty for your use — but having extra RAM never slows the machine down, it simply stops making a difference.
Can every computer have more RAM added?
Not all of them. Many modern thin laptops have it soldered to the motherboard and it can't be upgraded. It's worth checking before assuming you'll be able to add more later.