XY翼

等級 6 · 橙色腰帶(綠色條紋)

策略:

翅膀

需要:

裸雙

之後學習:

XY鏈XYZ-Wing

概要

XY翼 使用三個雙值單元格,排列方式為每對單元格共享一個候選數。樞紐單元格看到兩個翼單元格,而兩個翼單元格的共同候選數可從同時看到兩個翼單元格的單元格中刪除。

工作原理

  1. 找到一個樞軸 單元格,其候選數字為 {X,Y},並看到兩個翼單元格。
  2. 一個翼單元格的候選數字為 {X,Z},另一個為 {Y,Z}。
  3. 若樞軸為 X,則一個翼單元格為 Z;若樞軸為 Y,則另一個翼單元格為 Z。
  4. 從任何看到兩個翼單元格的 單元格 中刪除 Z。

範例

尋找XY翼。

1

XY翼

Find a pivot cell r7c2 with two candidates, connected to two 'wing' cells.

2

XY翼

The wings r9c3 and r9c7 share a candidate not in the pivot - this is the elimination digit.

3

XY翼

This is an XY-Wing - the shared candidate is eliminated from common peers.

4

XY翼

Either wing must contain 8, so eliminate from cells seeing both wings: r7c7, r7c8 and r9c1.

5

應用該技術後的結果。

技巧與模式

  • 三個單元格都必須是雙值(恰好兩個候選數)。樞軸單元格必須與兩個翼單元格相見;翼單元格之間可能相見,也可能不相見。尋找雙值單元格,並檢查它們是否形成 XY-YZ-XZ 模式。