This is my (basic) understanding of Implication Chains/Streams and Inference Chains using chain notation. I have questions!
- Code: Select all
Sample PM
*-----------------------------------------------------------------------------*
| 6 1 47 | 2 3 8 | 4579 479 4579 |
| 5 9 8 | 4 6 7 | 3 1 2 |
| 3 47 2 | 1 9 5 | 47 8 6 |
|-------------------------+-------------------------+-------------------------|
| 149 5 3 | 7 14 2 | 8 6 49 |
| 24789 2467 4679 | 3 48 469 | 2479 5 1 |
| 124789 2467 4679 | 68 5 1469 | 2479 3 479 |
|-------------------------+-------------------------+-------------------------|
| 249 3 469 |*68 7 146 |*14569 249 *4589 |
| 2479 2467 1 | 5 248 3 | 4679 2479 4789 |
| 247 8 5 | 9 124 *146 |*1467 247 3 |
*-----------------------------------------------------------------------------*
- Code: Select all
Implication Chain/Stream: left-to-right
r7c4=6 => r7c9=8 => r7c7=5 => r9c7=1 => r9c6=6 => r7c4=8
- Code: Select all
Inference Chain: bi-directional (w/ bivalue-cell information added)
(6=)[r7c4]=8=[r7c9]=5=[r7c7]=1=[r9c7]=6=[r9c6]-6-[r7c4]
Strong Link: [cell_1]=a=[cell_2] => if (cell_1 is not a) then (cell_2 is a)
Weak Link: [cell_1]-a-[cell_2] => if (cell_1 is a) then (cell_2 is not a)
Q 1: Is this correct?
Q 2: To present a more complete picture of an Implication Chain/Stream, I'd like to place (l-r) in front of what appears to be an Implication Chain. Is this acceptable? Is there another way that already exists?
Finally, I'd like to present an alternate format for chain notation.
- Code: Select all
Inference Chain: bi-directional, alternate format (w/ bivalue-cell information added)
(6=)[r7c4]-8=[r7c9]-5=[r7c7]-1=[r9c7]-6=[r9c6]=6-[r7c4]
Strong Link: [cell_1]-a=[cell_2] => if (cell_1 is not a) then (cell_2 is a)
Weak Link: [cell_1]=a-[cell_2] => if (cell_1 is a) then (cell_2 is not a)
Q 3: Is there a case where the alternate format doesn't work? (Why do I have a feeling that I've asked this question before!)