pingu wrote:the logic is to imagine on the blue tile if is a 7 or a 6 both ways eliminates the 7 on the red tile
I see that much, and it's valid logic. However, the exact name of the move depends on the paths you take. The name doesn't really matter, though, as long as the logic is correct -- and it is! It's much more valuable to learn such fundamental deduction techniques than to memorize a bunch of named patterns. So, I think you're on the right path!
The technique you used is a basic kind of Forcing Chain, where you start with two options (at least one of which must be true) and find a common elimination for both of them. One way to present it as such (using the S(plit)-Wing path):
(6)r8c7 - (6)r7c9 = (6)r5c9 [- (7)r5c9]
||
(7)r8c7 - (7)r3c7 = (7)r3c9 [- (7)r5c9]
=> -7 r5c9
Such two-way forcing chains are also automatically
AICs (Alternating Inference Chains) if you "pull it straight" into a single chain (and preferably leave out the bracketed eliminations at the ends). That's how I originally presented it. An AIC proves that either the start or the end node must be true (or both), so anything they both see can be eliminated.
Btw, if you want to learn about the Eureka-notation used here,
here's a link to the basics.
One more thing. It would be very helpful if you posted your puzzles in a format that can be copy-pasted into a software solver. In this case it didn't matter because I could immediately see the chain in your image, but it might not always be the case. Seems that you're using Hodoku yourself (good), and it's very easy to do with it. Just pull two things from the Edit-menu and attach them to your post: "Copy Givens" (the starting grid as an 81-character string) and "Copy Candidates" (the current puzzle state). Also, put at least the latter into a "Code-block" so it doesn't look mangled. Like this:
The original puzzle (via "Edit::Copy Givens"):
- Code: Select all
9....73......6.4...413.9...7....584..3.....1..826....5...5.419...5.8......47....8
The puzzle state (via "Edit::Copy Candidates"):
- Code: Select all
.------------.--------------.---------------.
| 9 5 8 | 24 24 7 | 3 6 1 |
| 2 7 3 | 18 6 18 | 4 5 9 |
| 6 4 1 | 3 5 9 | 27 8 27 |
:------------+--------------+---------------:
| 7 1 6 | 29 239 5 | 8 4 23 |
| 5 3 9 | 48 47 28 | 267 1 267 |
| 4 8 2 | 6 17 13 | 9 37 5 |
:------------+--------------+---------------:
| 8 26 7 | 5 23 4 | 1 9 36 |
| 13 269 5 | 19 8 236 | 67 237 4 |
| 13 269 4 | 7 19 236 | 5 23 8 |
'------------'--------------'---------------'
Both of them can be directly copy-pasted into Hodoku.