One Trick 4

Post puzzles for others to solve here.

One Trick 4

Postby morl » Tue Apr 24, 2018 1:19 pm

Code: Select all
+-------+-------+-------+
| . . . | . . . | . . . |
| 4 2 6 | . . . | 1 9 3 |
| . 5 . | . . . | . 2 . |
+-------+-------+-------+
| . . 7 | 5 2 6 | 3 . . |
| . 8 . | . 1 . | . 4 . |
| 9 . . | . 7 . | . . 2 |
+-------+-------+-------+
| . . . | 4 6 3 | . . . |
| . . 3 | . . . | 7 . . |
| . . . | . . . | . . . |
+-------+-------+-------+

Link

.........426...193.5.....2...75263...8..1..4.9...7...2...463.....3...7...........

Have fun!
morl
morl
 
Posts: 60
Joined: 12 February 2018

Re: One Trick 4

Postby Marty R. » Tue Apr 24, 2018 4:14 pm

Code: Select all
┌─────────────────┬─────────────────┬─────────────────┐
│   3    19    19 │   6     4     2 │   8     7     5 │
│                 │                 │                 │
│   4     2     6 │   7    58    58 │   1     9     3 │
│                 │                 │                 │
│   7     5     8 │   9     3     1 │   4     2     6 │
├─────────────────┼─────────────────┼─────────────────┤
│   1     4     7 │   5     2     6 │   3     8     9 │
│                 │                 │                 │
│   6     8     2 │   3     1     9 │   5     4     7 │
│                 │                 │                 │
│   9     3     5 │   8     7     4 │   6     1     2 │
├─────────────────┼─────────────────┼─────────────────┤
│  28     7    19 │   4     6     3 │  29     5    18 │
│                 │                 │                 │
│ 258    19     3 │  12   589    58 │   7     6     4 │
│                 │                 │                 │
│ 258     6     4 │  12   589     7 │  29     3    18 │
└─────────────────┴─────────────────┴─────────────────┘


2r8c1=(2-1)r8c4=r8c2-(1=92)r7c37=> -2r7c1
Marty R.
 
Posts: 1508
Joined: 23 October 2012
Location: Rochester, New York, USA

Re: One Trick 4

Postby Sudtyro2 » Tue Apr 24, 2018 8:59 pm

Code: Select all
+--------------+---------------+--------------+
| 3   19  19   | 6   4    2    | 8   7   5    |
| 4   2   6    | 7   58*  58*  | 1   9   3    |
| 7   5   8    | 9   3    1    | 4   2   6    |
+--------------+---------------+--------------+
| 1   4   7    | 5   2    6    | 3   8   9    |
| 6   8   2    | 3   1    9    | 5   4   7    |
| 9   3   5    | 8   7    4    | 6   1   2    |
+--------------+---------------+--------------+
| 28  7   19   | 4   6    3    | 29  5   18   |
| 258 19  3    | 12  589* 58*  | 7   6   4    |
| 258 6   4    | 12  589  7    | 29  3   18   |
+--------------+---------------+--------------+

ADP(58)r28c56, using the one internal => +9r8c5; stte

SteveC
Sudtyro2
 
Posts: 754
Joined: 15 April 2013

Re: One Trick 4

Postby Cenoman » Tue Apr 24, 2018 10:23 pm

Code: Select all
 +------------------+------------------+-----------------+
 |  3     19   19   |  6    4     2    |  8    7    5    |
 |  4     2    6    |  7    58*   58*  |  1    9    3    |
 |  7     5    8    |  9    3     1    |  4    2    6    |
 +------------------+------------------+-----------------+
 |  1     4    7    |  5    2     6    |  3    8    9    |
 |  6     8    2    |  3    1     9    |  5    4    7    |
 |  9     3    5    |  8    7     4    |  6    1    2    |
 +------------------+------------------+-----------------+
 | a28    7    19   |  4    6     3    |  29   5    1-8  |
 |  258*  19   3    |  12   589   58*  |  7    6    4    |
 | b258*  6    4    |  12  b589*  7    |  29   3   c18   |
 +------------------+------------------+-----------------+

DP(58)r2c56,b8p68,r89c1 (*) using mixed internal-external 8r7c1==9r9c5
(8)r7c1==(95-8)r9c15 = (8)r9c9 => -8 r7c9; stte
Cenoman
Cenoman
 
Posts: 2747
Joined: 21 November 2016
Location: France

Re: One Trick 4

Postby Leren » Wed Apr 25, 2018 1:51 am

Code: Select all
*-----------------------------------*
| 3    19 19 | 6  4   2  | 8  7  5  |
| 4    2  6  | 7  58  58 | 1  9  3  |
| 7    5  8  | 9  3   1  | 4  2  6  |
|------------+-----------+----------|
| 1    4  7  | 5  2   6  | 3  8  9  |
| 6    8  2  | 3  1   9  | 5  4  7  |
| 9    3  5  | 8  7   4  | 6  1  2  |
|------------+-----------+----------|
|a28   7  19 | 4  6   3  | 29 5 b18 |
| 58-2 19 3  |e12 589 58 | 7  6  4  |
| 258  6  4  |d12 589 7  | 29 3 c18 |
*-----------------------------------*

(2=8) r7c1 - r7c9 = (8-1) r9c9 = (1-2) r9c4 = (2) r8c4 => - 2 r8c1; stte

Leren
Leren
 
Posts: 5039
Joined: 03 June 2012

Re: One Trick 4

Postby Marty R. » Wed Apr 25, 2018 1:59 am

(8)r7c1==(95-8)r9c15 = (8)r9c9 => -8 r7c9; stte


Cenoman, what do the double equal signs between the first two terms mean? (I should probably be able to figure it out from the context, but I can't)
Marty R.
 
Posts: 1508
Joined: 23 October 2012
Location: Rochester, New York, USA

Re: One Trick 4

Postby Cenoman » Wed Apr 25, 2018 6:44 am

Marty R. wrote:
(8)r7c1==(95-8)r9c15 = (8)r9c9 => -8 r7c9; stte


Cenoman, what do the double equal signs between the first two terms mean? (I should probably be able to figure it out from the context, but I can't)


The meaning is the same as the equal sign (i.e. logic OR). This a practise of mine, and of some other players (e.g. JC Van Hay) to draw attention on the fact that this OR is a derived one (inferred from the UR pattern) and not a native one (that can be read on the PM from the sudoku rules).
Cenoman
Cenoman
 
Posts: 2747
Joined: 21 November 2016
Location: France


Return to Puzzles