eleven wrote:i do not take part in your notation games.
Yet you just did, like many times before. If you really don't want to play that game, then why even comment my solution? On my part I definitely welcome such quality control, except for the fact that the resulting discussions tend to fall into déjà vu spirals which never end well. I'd rather break that cycle if only I knew how. I'm tired of useless and especially repeating conflicts.
So, what should I do if I can't honestly agree with you? Seems like you don't really appreciate me talking back to you and defending my points of view. Do you expect me to automatically concede because you're one of the top senior members of this forum and have superior sudoku skills in general? If we were talking about MUGs, for example, I'd be happy to do that (and have). Not likely with this particular topic, though.
When i see a solution in whatever notation, i try to find out the logic contained in it, and as far as i remember i always succeeded, if the solution was correct. Not in this case.
That's not quite accurate. You've failed to see the logic in several of my solutions, mostly due to similarly tricky links. Yet you've almost always accepted them as correct after my explanations, even though you've hated them without exception. (Of course that's not counting any careless mistakes which I've gratefully corrected immediately, or my oldest chains when I couldn't write even basic ALS terms correctly.)
The difference this time is that neither one of us has conceded even after several rounds of explanations. I can't remember but a couple of other cases when more than one round was needed. That makes this a pretty interesting case, so I'm definitely glad I wrote it, even if you aren't.
You mangled 3 cases into one AIC style link
No, just 2 into one AIC
- Code: Select all
(3,8)r3c6,r7c9 = (-3r3c6 | -8r7c9)
Now, I must admit that this discussion made me doubt that logic for a while. Was it too simplistic? Did I miss valid cases? I don't actually think so, even though it was partly luck. In fact, after pondering this for about ten minutes I'm conjecturing that it's a general rule for similar situations, and it works no matter how many candidates those cells have. Technically it should have a third case: (-3r3c6 & -8r7c9) but since it's a union of the other two we can dismiss it for any practical purposes.
Like I said, I just came up with that rule. Am I overlooking something obvious?
[Added. Actually I think I was, but apparently it changes nothing. To really cover all cases systematically, I think they should be these:
- Code: Select all
(3,8)r3c6,r7c9 = ((-3r3c6 & 8r7c9) | (3r3c6 & -8r7c9) | (-3r3c6 & -8r7c9))
Lucky for me, that reduces exactly to what I conjectured anyway. I used this boolean calculator to check the result:
- Code: Select all
(~a * b) + (a * ~b) + (~a * ~b) <=> (~a + ~b)
So, despite my slightly incomplete approach originally, it seems that my logical instincts were correct nevertheless. Does anyone disagree?
Added more. Actually I think result should be pretty self-evident. To prove a verity we need show that A and its logical complement -A both prove the same thing, right? Well, if A is (3,8)r3c6,r7c9, i.e. (3r3c6 & 8r7c9), we have:
(3r3c6 & 8r7c9) = -(3r3c6 & 8r7c9) <-> (-3r3c6 | -8r7c9)
Basic De Morgan's theorem, right?
]
Btw, if you insist on using the digit combos, how about this:
(38=33|88)r3c6,r7c9 - (8)r7c9&r8c6 = (8-6)r7c5 = RP(38)r38c6,r7c59 => -38 r3c9
and when i tried to verify the first one, it turned out to be wrong. Now i see, that it would be right, if i had used the strong links for 8 instead of the candidates links in the cells.
To be honest, I can't see why it wasn't obvious to you that the bilocation strong links were the key. Nothing in what I wrote indicated that there was any bivalue linking happening in the r3c6 and r7c9 cells. The only bivalue strong link used in the whole logic was in r8c6 (and that's buried in the internal logic of the 38b8p26 node). Are you sure that your own preconceptions didn't make you blind to what was actually written in the notation?
The conclusion is, that the link is both right and wrong, which i cannot accept.
No. It's one or the other but not both. This is not a Schrödinger's cat situation.
--
Edits. Added the boolean calculation and some ponderings.