← Back to Blog Strategy

How to Win at Battleship Every Time

Battleship is one of those games people assume is entirely random — you pick squares, hope for the best, and whoever gets lucky first wins. In reality, Battleship is a deeply probabilistic game where strategic shot selection, disciplined mode-switching, and smart ship placement can tilt the odds heavily in your favour. Competitive Battleship players and computer scientists have studied the game extensively, and the findings are clear: skilled play reduces the average number of shots to sink all five ships from around 66 (random guessing) to roughly 42 or fewer. That difference is the gap between losing most games and winning most of them.

This guide covers every major Battleship strategy, from the foundational parity pattern through advanced conditional probability, so you can approach each game with a concrete plan rather than blind hope.

Understanding the Probability Landscape

A standard Battleship board is a 10x10 grid containing five ships: Carrier (5 cells), Battleship (4), Cruiser (3), Submarine (3), and Destroyer (2). Before your first shot, every cell on the board has some probability of containing a ship segment. That probability is not uniform. Centre cells can be covered by far more possible ship arrangements than edge or corner cells. Specifically, the cell at position E5 can be intersected by approximately 40 distinct ship placements across all five ships, while a corner cell like A1 can be intersected by only about 10. This means your very first shot is already a strategic decision, not a coin flip.

The mathematical framework behind this is called probability density. For each unfired cell, you calculate how many valid arrangements of all remaining unsunk ships pass through that cell, given everything you already know (hits, misses, and sunk ships). The cell with the highest density is the optimal next shot. This approach, implemented as an algorithm, produces near-optimal play. You don't need to compute exact densities in your head during a game, but understanding the principle guides every strategy below.

The Parity (Checkerboard) Pattern

Parity is the single most important concept in Battleship strategy. Imagine painting the board like a checkerboard — alternating black and white squares. Every ship, no matter how it's placed, must occupy at least one black square and at least one white square, because ships span consecutive cells. This means if you only fire on black squares (or only on white squares), you are guaranteed to eventually hit every ship while only needing to search 50 cells instead of 100.

This alone cuts your expected shots nearly in half compared to random play. In practice, you start with a parity pattern focused on the centre of the board and work outward. A good opening sequence might be: E5, C3, G7, B6, H4, D8, F2 — all the same colour on the checkerboard, all near the centre where ship density is highest.

Enhanced Parity for Larger Ships

Early in the game, when the Carrier (length 5) and Battleship (length 4) are still afloat, you can use an even sparser search pattern. A ship of length 5 must intersect at least one cell in every set of five consecutive cells along a row or column. This means you can use a "stride-5" pattern — firing on every fifth cell along diagonal lines — and still guarantee you'll find the Carrier. As large ships are sunk, you tighten the pattern back to standard checkerboard parity to find the smaller ships. This adaptive approach saves an additional three to five shots on average.

Hunt Mode and Target Mode

Skilled Battleship players operate in two distinct mental modes, and knowing when to switch is critical.

Hunt Mode

Hunt mode is your default state when you have no unresolved hits. In hunt mode, your goal is to find a ship — any ship. You fire according to your parity pattern, prioritising high-probability cells near the centre. Every shot in hunt mode is a search operation. You're spending a shot to gain information. A miss is not wasted; it eliminates that cell from all future probability calculations and slightly increases the density of every remaining cell.

Target Mode

The moment you score a hit, you switch to target mode. Now your goal changes from "find a ship" to "sink this specific ship as quickly as possible." Target mode follows a precise algorithm:

  1. Fire adjacent cells. After your initial hit, shoot one of the four orthogonal neighbours (up, down, left, right). Prioritise directions where more ship placements are possible — for example, if your hit is near the right edge, try left first since there's more room for a ship to extend in that direction.
  2. Establish orientation. If your second shot hits, you now know the ship runs in that direction. Continue firing along the same line.
  3. Handle misses. If your second shot misses, try another adjacent cell of the original hit. If you get a hit-then-miss pattern, try the opposite end of the line — the ship might extend the other way from your first hit.
  4. Sink and confirm. Continue until the ship is announced as sunk. Then return to hunt mode with updated probability information.

The most common mistake intermediate players make is abandoning target mode too early. If you score a hit but then miss on the next shot, do not go back to random hunting. You know a ship is there — stay in target mode until it's sunk. Discipline here saves an enormous number of wasted shots.

Conditional Probability After Hits

Once you have partial information — a hit here, a miss there — the probability map of the board changes dramatically. Advanced players update their mental model after every single shot. Consider this scenario: you hit a cell at D4 but miss at D5 and C4. The remaining possibilities for the ship at D4 are now constrained — it must extend upward (D3, D2, ...) or to the right (E4, F4, ...). The probability that E4 contains part of this ship is now much higher than it was before the hit, even though E4 started as a fairly average cell.

This kind of reasoning is called Bayesian updating, and it's the core of what separates strong Battleship players from average ones. You don't need to do formal math in your head; just ask yourself after every shot: "Given what I now know, where are the remaining ships most likely to be?" Common heuristics that approximate Bayesian reasoning include:

  • After sinking a short ship, the remaining probability shifts toward cells that can accommodate longer ships.
  • Large open areas of the board (no misses) have higher expected ship density than fragmented areas riddled with misses.
  • If you've sunk four ships and only the Destroyer (length 2) remains, every pair of adjacent unfired cells is equally likely — switch to the densest cluster of unfired pairs.

Optimal Opening Moves

Your first five to ten shots set the trajectory for the entire game. The mathematically strongest opening strategy combines parity with centre-bias. Computer simulations running millions of games have shown that the following principles produce the best results:

  1. Start near the centre. Cells in the 4-7 range on both axes (e.g., E5, F6, D7) have roughly two to three times the ship density of corner cells.
  2. Maintain parity. Never fire two adjacent cells during hunt mode — it wastes coverage.
  3. Spread shots diagonally. A diagonal pattern across the board covers more unique rows and columns per shot, maximising the chance of intersecting a ship.
  4. Adapt to board size. On smaller variant boards (like 8x8), tighten your pattern; on larger boards, you can afford to be sparser early.

A strong opening sequence on a 10x10 board might look like: E5, G3, C7, H6, B4, F8, D2, I5, A6, G9. This covers the board evenly with parity while concentrating on high-density zones.

Ship Placement Psychology

Half of Battleship strategy is offence (where you shoot), and the other half is defence (where you place your ships). Most players fall into predictable placement patterns that you can exploit — and you should avoid falling into them yourself.

Common Opponent Patterns

Studies of casual Battleship players reveal strong biases. About 60 percent of players place at least one ship along an edge. Roughly 40 percent cluster two or more ships in the same quadrant. Many players avoid the exact centre, thinking it's "too obvious." These tendencies mean that edge and corner squares are actually slightly more productive targets against casual opponents than pure probability would suggest — an interesting case where game theory (exploiting human behaviour) overrides raw mathematics.

Optimal Placement Strategy

The best defence against a skilled opponent is randomness. Use a mental randomisation process to place each ship: pick a random orientation (horizontal or vertical), then a random valid position. Avoid any pattern you've used in previous games against the same opponent. Specific tips:

  • Don't line all ships in the same direction — mix orientations.
  • Leave gaps between ships — adjacent ships get found together, accelerating your opponent's targeting.
  • Place at least one ship in an "uncomfortable" location (touching an edge, in a corner area) to exploit opponents who focus searches on the centre.
  • Change your placement strategy between games in a series — a pattern that worked once becomes a liability if your opponent adapts.

Endgame Strategy

The endgame — when one or two small ships remain — requires a shift in thinking. With most of the board already fired upon, you have a wealth of information. The remaining unfired cells form clusters, and you know exactly which ships are left and how long they are. At this stage, switch from general parity to a focused analysis: which clusters of adjacent unfired cells can actually fit the remaining ship(s)? Many unfired cells can be immediately eliminated because they don't have enough consecutive open neighbours to contain the remaining ship. Focusing on viable clusters rather than shooting randomly among all unfired cells can save three to five shots in the endgame.

For example, if only the Destroyer (length 2) remains and you have a lone unfired cell at B8 surrounded by misses on all four sides, that cell cannot contain the Destroyer — skip it entirely. Look for pairs of adjacent unfired cells, and fire at the one that belongs to the most such pairs.

Adapting Strategy Mid-Game

No plan survives first contact unchanged. As the game progresses, you should continuously adjust based on three factors:

  1. Which ships have been sunk. This changes the probability distribution dramatically. Once the Carrier is sunk, cells that were high-probability only because they could fit a length-5 ship may drop in priority.
  2. Your opponent's shooting pattern. In games where you can observe your opponent's shots (simultaneous play), their targeting pattern reveals information about their strategy. If they're using parity, you might succeed with edge placements. If they're shooting randomly, any placement is roughly equal.
  3. Shot count pacing. If you're behind on ship sinkings, consider whether you're stuck in target mode too long on a phantom hit (a cell you thought was part of a longer ship but was actually the end). Be willing to re-evaluate and shift back to hunt mode if target mode isn't converging.

Mathematical Analysis: Random vs. Optimal Play

Monte Carlo simulations of millions of Battleship games provide hard numbers on the value of strategy. A purely random player (selecting uniformly from unfired cells) sinks all five ships in an average of about 66 shots. A player using parity alone drops that to roughly 52 shots. Adding centre-bias and hunt/target mode discipline brings it to about 44. Full conditional probability (Bayesian updating after every shot) pushes it down to approximately 42 shots. That's a 36 percent reduction from random play — the difference between needing 66 turns and needing 42 in a game where your opponent might sink you in 50.

Competitive Battleship players report win rates of 70-80 percent against casual opponents, which aligns with these simulations. The game is not pure luck; it's a probabilistic puzzle where informed decisions compound into a massive advantage.

Ready to test your Battleship strategy? Play Battleship on Player Benchmark and see how few shots you need to clear the board.

Frequently Asked Questions

What is the best opening move in Battleship?

Statistically, the centre of the board is the best opening move. On a standard 10x10 grid, centre squares like E5 or F6 intersect more possible ship placements than corner or edge squares. A ship of length five can pass through a centre cell in up to ten different orientations, but through a corner cell in only two. Starting near the centre and expanding outward with a parity pattern gives you the highest expected information gain per shot.

What is the parity or checkerboard strategy in Battleship?

Parity strategy means firing only on squares of one colour of a checkerboard pattern during the hunting phase. Since every ship occupies at least two consecutive cells, every ship must cover at least one square of each colour. By targeting only one colour, you cut the number of squares you need to search roughly in half — from 100 down to 50 — while still guaranteeing that you will hit every ship at least once.

How do you decide where to shoot after getting a hit?

After a hit, switch from hunt mode to target mode. Fire on the four adjacent cells (up, down, left, right) of your hit. Once you get a second hit, you know the ship is oriented in that direction, so continue firing along that line until you either sink the ship or miss. After a miss, try the opposite direction from your original hit. Always resolve one ship completely before returning to hunt mode.

Where should I place my ships to make them hardest to find?

Avoid edges and corners, since many beginners use parity strategies that cover the centre first. Do not cluster ships together. Place at least one ship touching an edge to exploit opponents who focus on the centre. Mix horizontal and vertical orientations randomly. Avoid predictable patterns such as lining all ships along one axis. The goal is to be unpredictable, since any systematic placement can be exploited by an observant opponent.

Can you actually win Battleship every single time?

No strategy guarantees a win in every game because Battleship involves hidden information and your opponent places ships without your knowledge. However, probability-based play dramatically improves your win rate. Studies using Monte Carlo simulations show that optimal targeting strategies beat random play roughly 80 percent of the time and reduce the average shots needed to sink all ships from about 66 to under 42.

Try It Yourself

Put these tips into practice with the Battleship on Player Benchmark.