ag24ag24 wrote:A candidate c=v can be eliminated from a PM grid if the grid's initial resolution state includes a set T of n truths and a set L of n-1 links, with n>=1, such that:
- c=v does not appear in any member of either T or L; and
- no candidate appears in a member of L and also in more than one member of T; and
- all candidates that appear in T but not L are linked (by links not in L) to c=v.
This cannot prove any elimination.
A slightly stronger rule would be:
A candidate c can be eliminated from a PM grid if the grid's initial resolution state includes a set T of n truths and a set L of n-1 links, with n>=1, such that:
Each candidate which appears in more members of T than of L is linked to c.
This rule is equivalent to T&E(rank0 logic), which cannot prove TH.
- Code: Select all
,---------------------------------,---------------------------------,---------------------------------,
| 123 456789 456789 | 123 456789 456789 | 123456789 123456789 123456789 |
| 456789 123 456789 | 456789 123 456789 | 123456789 123456789 123456789 |
| 456789 456789 123 | 456789 456789 123 | 123456789 123456789 123456789 |
:---------------------------------+---------------------------------+---------------------------------:
| 123 456789 456789 | 123456789 123456789 123456789 | 123456789 123456789 123456789 |
| 456789 123 456789 | 123456789 123456789 123 | 123456789 123456789 123456789 |
| 456789 456789 123 | 123456789 123 123456789 | 123456789 123456789 123456789 |
:---------------------------------+---------------------------------+---------------------------------:
| 123456789 123456789 123456789 | 123456789 123456789 123456789 | 123456789 123456789 123456789 |
| 123456789 123456789 123456789 | 123456789 123456789 123456789 | 123456789 123456789 123456789 |
| 123456789 123456789 123456789 | 123456789 123456789 123456789 | 123456789 123456789 123456789 |
'---------------------------------'---------------------------------'---------------------------------'
123r4c4 are the only candidates which don't appear in any solution.
Suppose you try to eliminate (WLOG) 1r4c4 by T&E(rank0 logic).
That means you set 1r4c4 and can only make rank0 steps until you reach a contradiction.
Rank0 logic generalises to fractional sudoku, but the grid with 1r4c4 still has fractional solutions, such as this one (each candidate's truth value is 1/# of candidates in its cell):
- Code: Select all
,------------,------------,------------,
| 1 4 5 | 23 6 7 | 23 8 9 |
| 6 23 8 | 4 23 9 | 5 1 7 |
| 7 9 23 | 5 8 1 | 23 4 6 |
:------------+------------+------------:
| 23 6 7 | 1 5 8 | 4 9 23 |
| 5 23 4 | 7 9 23 | 1 6 8 |
| 9 8 1 | 6 23 4 | 7 23 5 |
:------------+------------+------------:
| 23 7 6 | 8 4 23 | 9 5 1 |
| 4 5 23 | 9 1 6 | 8 7 23 |
| 8 1 9 | 23 7 5 | 6 23 4 |
'------------'------------'------------'
Therefore you cannot reach a contradiction with rank0 logic, so T&E(rank0 logic) cannot prove TH.
eleven wrote:Well i would have preferred a proof, which does not rely on Lee’s Theorem.
Same, but I have no idea how to go about it.
Your template idea seems interesting, but you would need a stronger induction assumption – that the rules can construct all possible n-template truths.
You might be able to bypass Lee's theorem that way, but it seems complicated.
Even just n=1, what omnipotent theory do we have for SDPs other than Resolution?
Marek