Atari: Go's one-liberty alarm every beginner needs
⏱ Read ~6 min · Updated July 2026 · Part of: Learn Go
If you learn one Japanese word in Go, learn atari. It's the alarm bell of the whole game: "this group is one step from being captured." Getting that alarm to ring automatically in your head is the single fastest leap a beginner can make — because nearly every Go tactic (ladders, nets, capturing races) rests on the same insight: drive the opponent down to one liberty, then decide what to do with them.
| English | 中文 | Plain meaning |
|---|---|---|
| liberty | 氣 | empty points next to a stone — like breaths |
| atari | 打吃/叫吃 | down to one liberty, about to be captured |
| double atari | 雙叫吃 | one move puts two enemy groups in atari at once |
| capture | 提子/吃子 | fill the last liberty → remove the stones |
1. Atari, in one sentence
A group with only one liberty left is said to be in atari. If the opponent plays on that one liberty, they capture it.
🔔 Think of atari like chess's "check", but more literal: this group has one breath left. One more squeeze and it's gone.
🫁 Analogy: picture each stone as a swimmer. At 4 liberties they breathe easily; at 1 liberty, someone is about to push their head underwater — the next second they drown.
2. A concrete demo: the moment of atari, and the capture
Atari is abstract until you see it. Here's an entry-level position computed by the brainGO engine — the white stone (top-left) is already in atari, and Black captures it in 1 move:
What this position says:
- Count white's liberties. The white stone (0,0) — one neighbor is the black stone (0,1), and the only empty neighbor is (1,0). So white has exactly 1 liberty. That "down to 1 liberty" state is atari.
- Black plays (1,0). Fills white's last liberty → white drops to 0 → removed from the board (captured). Solved in 1 move.
So atari and capture are two instants: 1 liberty left = in atari (the alarm); that liberty filled = captured (out). The skill beginners most need is noticing the atari instant — not discovering it only once the stone is gone.
🔬 This "1-move capture" is verified by the brainGO engine at build time: Black can indeed capture (0,0) in one move, the solution is unique, and it's not anyone's opinion.
3. The liberty table: which stones get into atari fastest
Not all stones are equally vulnerable — the number of liberties depends on position. Memorize this table and you'll develop a feel for "who's about to be in atari":
| Stone position | Starting liberties | Reduction to reach atari |
|---|---|---|
| Corner (e.g. 0,0) | 2 | fill 1 → 1 left = atari |
| Edge (e.g. 0,1) | 3 | fill 2 |
| Center (e.g. 1,1) | 4 | fill 3 |
→ Corners are the most fragile (only 2 liberties; the opponent fills one and it's atari), which is why beginners lose stones in corners most often. The arithmetic is always the same: liberties − filled; drop to 1 and it's atari. For the full liberty-counting method, see liberty.
4. Double atari: the trap beginners lose the most stones to
Double atari is when one of your moves puts two enemy groups in atari at once.
😱 The opponent can save only one group per move — the other is guaranteed captured. This is how beginners lose the most material: letting two of their own unconnected groups each sit at one or two liberties, so a single double-atari move puts them in an impossible spot.
On defense: don't let two of your unconnected groups be low on liberties at the same time — either connect them (connected stones share liberties and are safe) or loosen one group's liberties early. On offense: when you see two of the opponent's groups that are liberty-tight and unconnected, look for the single point that hits both at once — that's the double atari.
5. The two reflexes when you see atari
Whether it's your stones or the opponent's in atari, you only ask two things:
- My stones are in atari: can I extend? Play a move touching this group, creating a new empty neighbor. One more liberty, one more chance (unless extending just leads to a ladder or a dead end — then you're throwing good stones after bad).
- Opponent's stones are in atari: can I capture now? If yes, fill the liberty and take them. Sometimes "don't capture yet, keep them as ko material or to set up a ladder" is smarter — that's advanced.
Atari turns scary local fights into this two-item checklist. 🎯
6. What atari unlocks: the entry point to every tactic
Once atari is second nature, the following come naturally — they're all different ways of "driving the opponent to one liberty":
- Ladder: the atari'd group runs, you keep atari'ing as they flee, climbing rung by rung.
- Net: instead of chasing, you seal every exit so they can't run.
- Capturing race: both sides are tight on liberties; it's a race to who drives whom to 0 first.
So atari isn't an isolated word — it's the operating system that every Go tactic runs on top of.
7. The 4 most common atari mistakes for beginners
- Missing that your own stones are in atari. Most common. Every time it's your move, scan for any of your stones at one liberty first — that reflex is worth a thousand games.
- Panicking and running without reading. Before extending, read: after extending, can the opponent keep atari'ing? If yes (e.g. a ladder), running just donates more stones; better to abandon and regain elsewhere.
- Letting two of your groups fall into double atari. Two tight, unconnected groups = double-atari fodder. Connect them or loosen up.
- Not capturing when you could (passing up free stones). If the opponent is in atari and you can capture, usually just capture (unless there's a higher strategic reason). Free stones left on the board are waste.
How to train atari into a reflex
The fastest way to internalize atari is to "atari" hundreds of times with instant feedback — that's exactly what capture-go training is for: every puzzle drills "see who's on one liberty, and fill it."
👉 Play brainGO — make your first atari
FAQ
Should I always capture immediately when I have atari?
Not always. Most of the time, if you can capture, you should (free stones). But sometimes leaving the atari'd group as ko material, or to bait the opponent into a mistake, is worth more. For beginners: build the "capture if you can" reflex first; learn the "it's worth more not to" cases later.
Is atari the same as chess's "check"?
Similar — both mean "one step from being out." Difference: in chess you must answer check (ignoring it loses the king); in Go you can choose to ignore atari (abandon the stones) and play elsewhere — because Go has no king, losing one group isn't losing the game.
How do I avoid getting double-atari'd?
Two rules: ① don't let two unconnected groups both run low on liberties at once; ② connect tight stones (connected stones share liberties) or loosen one group early. If you see the point where the opponent could double-atari, grab it first.
Why are corner stones so easy to put in atari?
Corners have only 2 liberties (edge 3, center 4); the opponent fills one and it's atari. So corner stones are the most fragile, and that's where beginners lose stones most.
Related guides
- Learn Go: the visual beginner's guide — rules and the entry hub for this article
- Liberty — the breath atari takes away
- Capture — the step after atari: removing the stones
- Capture-go training — drill atari into a reflex
- Ladder · Net · Capturing race — the tactics atari unlocks
- Connect and cut — connecting defends against double atari