Turning Sequences of Numbers into Arithmetic Progressions

I've been thinking quite a bit about arithmetic progressions since I came across a problem named "The Arithmetic Progression Detective" on Codewars. An arithmetic progression is a sequence of integers such that, for any consecutive integers xix_i xi​ and xi+1x_{i + 1} xi+1​ in the sequence, xi+1−xix_{i + 1} - x_i xi+1​−xi​ is always the same value, d,d, d, known as the common difference. Let sns_n sn​ be an arbitrary sequence of integers. Let dnd_n dn​ be the common difference of the arithmetic progression from which sns_n sn​ deviates by no more than one value—the incorrect value—if such a progression exists. I'm going to call sns_n sn​ fixable if and only if such a progression exists. If sns_n sn​ cannot be turned into an arithmetic progression through the replacement of just one number in sn,s_n, sn​, then sns_n sn​ is not fixable. Bearing this in mind, what limits can we identify to the range of fixable sequences? Let s1s_1 s1​ be the sequence 1,2,4,5.1, 2, 4, 5. 1,2,4,5. Let s2s_2 s2​ be the sequence 2,5,6,8.2, 5, 6, 8. 2,5,6,8. s1s_1 s1​ is not a fixable sequence. But s2s_2 s2​ clearly is, since s2s_2 s2​ deviates by just one number from the arithmetic progression 2,4,6,8.2, 4, 6, 8. 2,4,6,8. s1s_1 s1​ and s2s_2 s2​ have a great deal in common. Each includes four numbers. Each superficially resembles an arithmetic progression. Each contains exactly one deviation, in one sense or another: exactly one step whose size differs from the others' in the case of s1,s_1, s1​, and exactly one incorrect value in the case of s2.s_2. s2​. So what difference between these two sequences makes s2s_2 s2​ fixable and s1s_1 s1​ not? One of the first things I noticed is, unlike s2,s_2, s2​, s1s_1 s1​ consists of steps all but one of which are the same size. To see this, note the following. The step from 22 2 to 44 4 in s1s_1 s1​ is of size 2.2. 2. The remaining steps in s1s_1 s1​ are of size 1.1. 1. By contrast, in s2,s_2, s2​, each step's a different size. Steps one through three, respectively, are of sizes 3,1,3, 1, 3,1, and 2.2. 2. So, the only step of size d2d_2 d2​ in s2s_2 s2​ is the third and final step, from 66 6 to 8.8. 8. This goes to show you should not take for granted that sns_n sn​ contains at least two steps of size dn,d_n , dn​, even assuming that there are four or more values in sn,s_n, sn​, and only one is incorrect. But this difference between s1s_1 s1​ and s2s_2 s2​ does not fully explain their differing with respect to fixability. Some sequences are just like s1s_1 s1​ in that they consist of steps all but one of which are the same size, but they are still fixable. One such sequence is 1,4,6,8.1, 4, 6, 8. 1,4,6,8. All you have to do to fix this is replace 11 1 with 2.2. 2. Really any sequence is fixable whose first or last term is the sole incorrect value. For our purposes the incorrect value in sns_n sn​ is defined as the one and only term whose replacement can single-handedly turn sns_n sn​ into an arithmetic progression. What sets s1s_1 s1​ apart from a sequence whose first or final term is the only wrong one? Why is s1s_1 s1​ not fixable like that kind of sequence? Maybe this is a better explanation. In s1s_1 s1​ we have a step of size 1,1, 1, followed by one of size 2,2, 2, followed by one of size 1.1. 1. If we could turn that second step into a step of size 1,1, 1, we'd be able to create an arithmetic progression. But if we try to do that by moving the beginning of the second step closer to that of the first step, we end up narrowing the first step. And if we move the beginning of the second step closer to the end of the second step, we widen the first step. If on the other hand we move the end of the second step closer to that of the third step, we narrow the third step. And if we move the end of the second step closer to the beginning of the second step, we widen the third step. So there are various ways to decrease the size of the second step from 22 2 to 1.1. 1. But they all end up shortening or lengthening one of the other steps, such that it is no longer of size 1.1. 1. (Well, more precisely, all our options have this result if we limit ourselves to replacing just one integer in s1s_1 s1​ with just one integer.) So we don't end up with an arithmetic progression. That's where 1,2,4,51, 2, 4, 5 1,2,4,5 differs from 1,4,6,8.1, 4, 6, 8. 1,4,6,8. The latter sequence consists of a step of size 3,3, 3, followed by two steps of size 2.2. 2. Crucially, that first step has an endpoint that no other step has. That is, the first number in the sequence is where the first step begins, and no other ste

Feb 18, 2025 - 04:23
 0
Turning Sequences of Numbers into Arithmetic Progressions

I've been thinking quite a bit about arithmetic progressions since I came across a problem named "The Arithmetic Progression Detective" on Codewars. An arithmetic progression is a sequence of integers such that, for any consecutive integers xix_i xi and xi+1x_{i + 1} xi+1 in the sequence, xi+1−xix_{i + 1} - x_i xi+1xi is always the same value, d,d, d, known as the common difference.

Let sns_n sn be an arbitrary sequence of integers. Let dnd_n dn be the common difference of the arithmetic progression from which sns_n sn deviates by no more than one value—the incorrect value—if such a progression exists. I'm going to call sns_n sn fixable if and only if such a progression exists. If sns_n sn cannot be turned into an arithmetic progression through the replacement of just one number in sn,s_n, sn, then sns_n sn is not fixable. Bearing this in mind, what limits can we identify to the range of fixable sequences?

Let s1s_1 s1 be the sequence 1,2,4,5.1, 2, 4, 5. 1,2,4,5. Let s2s_2 s2 be the sequence 2,5,6,8.2, 5, 6, 8. 2,5,6,8. s1s_1 s1 is not a fixable sequence. But s2s_2 s2 clearly is, since s2s_2 s2 deviates by just one number from the arithmetic progression 2,4,6,8.2, 4, 6, 8. 2,4,6,8.

s1s_1 s1 and s2s_2 s2 have a great deal in common. Each includes four numbers. Each superficially resembles an arithmetic progression. Each contains exactly one deviation, in one sense or another: exactly one step whose size differs from the others' in the case of s1,s_1, s1, and exactly one incorrect value in the case of s2.s_2. s2. So what difference between these two sequences makes s2s_2 s2 fixable and s1s_1 s1 not?

One of the first things I noticed is, unlike s2,s_2, s2, s1s_1 s1 consists of steps all but one of which are the same size. To see this, note the following. The step from 22 2 to 44 4 in s1s_1 s1 is of size 2.2. 2. The remaining steps in s1s_1 s1 are of size 1.1. 1. By contrast, in s2,s_2, s2, each step's a different size. Steps one through three, respectively, are of sizes 3,1,3, 1, 3,1, and 2.2. 2. So, the only step of size d2d_2 d2 in s2s_2 s2 is the third and final step, from 66 6 to 8.8. 8.

This goes to show you should not take for granted that sns_n sn contains at least two steps of size dn,d_n , dn, even assuming that there are four or more values in sn,s_n, sn, and only one is incorrect.

But this difference between s1s_1 s1 and s2s_2 s2 does not fully explain their differing with respect to fixability. Some sequences are just like s1s_1 s1 in that they consist of steps all but one of which are the same size, but they are still fixable. One such sequence is 1,4,6,8.1, 4, 6, 8. 1,4,6,8. All you have to do to fix this is replace 11 1 with 2.2. 2. Really any sequence is fixable whose first or last term is the sole incorrect value. For our purposes the incorrect value in sns_n sn is defined as the one and only term whose replacement can single-handedly turn sns_n sn into an arithmetic progression.

What sets s1s_1 s1 apart from a sequence whose first or final term is the only wrong one? Why is s1s_1 s1 not fixable like that kind of sequence? Maybe this is a better explanation.

In s1s_1 s1 we have a step of size 1,1, 1, followed by one of size 2,2, 2, followed by one of size 1.1. 1. If we could turn that second step into a step of size 1,1, 1, we'd be able to create an arithmetic progression. But if we try to do that by moving the beginning of the second step closer to that of the first step, we end up narrowing the first step. And if we move the beginning of the second step closer to the end of the second step, we widen the first step.

If on the other hand we move the end of the second step closer to that of the third step, we narrow the third step. And if we move the end of the second step closer to the beginning of the second step, we widen the third step.

So there are various ways to decrease the size of the second step from 22 2 to 1.1. 1. But they all end up shortening or lengthening one of the other steps, such that it is no longer of size 1.1. 1. (Well, more precisely, all our options have this result if we limit ourselves to replacing just one integer in s1s_1 s1 with just one integer.) So we don't end up with an arithmetic progression.

That's where 1,2,4,51, 2, 4, 5 1,2,4,5 differs from 1,4,6,8.1, 4, 6, 8. 1,4,6,8. The latter sequence consists of a step of size 3,3, 3, followed by two steps of size 2.2. 2. Crucially, that first step has an endpoint that no other step has. That is, the first number in the sequence is where the first step begins, and no other step begins or ends with that number. So you can replace that number with any number you want, including a number xx x such that 4−x=2.4 - x = 2. 4x=2. The substitution will affect no step but the first, which is the only one you want to change.

Here is a more formal proof that you cannot turn 1,2,4,51, 2, 4, 5 1,2,4,5 into an arithmetic progression by replacing just one integer with just one integer. We can split into two categories the integers in s1s_1 s1 there are to replace: the numbers on the ends and those in between.

Suppose you replace exactly one of the two numbers on the ends (i.e., 1 or 5).(\textrm{i.e., } 1 \textrm{ or } 5). (i.e., 1 or 5). Replacing 11 1 changes only the size or direction of the first step, whereas replacing 55 5 changes only the size or direction of the final step. So after you replace 1,1, 1, the sizes of the second and third steps are still, respectively, 22 2 and 1.1. 1. And after you replace 5,5, 5, the sizes of the first and second steps are still, respectively, 11 1 and 2.2. 2. But all the steps in the modified sequence must be the same size, if the sequence is to count as an arithmetic progression. So the modified sequence cannot be an arithmetic progression. In other words, you cannot turn s1s_1 s1 into an arithmetic progression by replacing just 1,1, 1, or just 5,5, 5, with just one integer.

Suppose that instead you replace exactly one number strictly between those on the ends (i.e., 2 or 4).(\textrm{i.e., } 2 \textrm{ or } 4). (i.e., 2 or 4). Let xx x and yy y be arbitrary integers such that x≠2x \not= 2 x=2 and y≠4.y \not= 4. y=4. Let s1xs_{1_x} s1x be the sequence resulting from replacing 22 2 with x.x. x. Let s1ys_{1_y} s1y be the sequence resulting from replacing 44 4 with y.y. y.

Recall that s1s_1 s1 is the sequence 1,2,4,5.1, 2, 4, 5. 1,2,4,5. Consequently, s1xs_{1_x} s1x is the sequence 1,x,4,5,1, x, 4, 5, 1,x,4,5, and s1ys_{1_y} s1y is the sequence 1,2,y,5.1, 2, y, 5. 1,2,y,5. The first two steps in s1xs_{1_x} s1x differ from the first two in s1;s_1; s1; no other steps in s1xs_{1_x} s1x differ from those in s1.s_1. s1. The final two steps in s1ys_{1_y} s1y differ from the final two in s1;s_1; s1; no other steps in s1ys_{1_y} s1y differ from those in s1.s_1. s1.

Let b=x−2,c=y−4.b = x - 2, c = y - 4. b=x2,c=y4. Then 1+b1 + b 1+b is the signed value representing the size and direction (on the number line) of the step from 11 1 to xx x in s1x,s_{1_x} , s1x, and 2−b2 - b 2b is that representing the size and direction of the step from xx x to 44 4 in s1x.s_{1_x} . s1x. Furthermore, 2+c2 + c 2+c is the signed value representing the size and direction (on the number line) of the step from 22 2 to yy y in s1y,s_{1_y}, s1y, and 1−c1 - c 1c is that representing the size and direction of the step from yy y to 55 5 in s1y.s_{1_y} . s1y.

s1xs_{1_x} s1x or s1ys_{1_y} s1y is an arithmetic progression only if all steps within it are of the same size and direction. Thus, s1xs_{1_x} s1x is an arithmetic progression only if

1+b=2−b=1.1 + b = 2 - b = 1. 1+b=2b=1.

And s1ys_{1_y} s1y is an arithmetic progression only if

1=2+c=1−c.1 = 2 + c = 1 - c. 1=2+c=1c.

But it is true neither that

1+b=2−b=11 + b = 2 - b = 1 1+b=2b=1

nor that

1=2+c=1−c.1 = 2 + c = 1 - c. 1=2+c=1c.

I shall show that neither of these is true by giving a proof by contradiction of the falsity of each.

Here is a proof by contradiction that

1+b=2−b=11 + b = 2 - b = 1 1+b=2b=1

is false.

Assume the following arguendo:

1+b=2−b=11 + b = 2 - b = 1 1+b=2b=1

Then:

1+b=2−b1 + b = 2 - b 1+b=2b

1+2b=21 + 2b = 2 1+2b=2 (added b to both sides)\tiny (\textrm{added } b \textrm{ to both sides}) (added b to both sides)

2b=12b = 1 2b=1 (subtracted 1 from both sides)\tiny (\textrm{subtracted } 1 \textrm{ from both sides}) (subtracted 1 from both sides)

b=12b = \frac{1}{2} b=21 (divided both sides by 2)\tiny (\textrm{divided both sides by } 2) (divided both sides by 2)

2−b=2−12=322 - b = 2 - \frac{1}{2} = \frac{3}{2} 2b=221=23

2−b=322 - b = \frac{3}{2} 2b=23 (transitivity of=)\tiny (\textrm{transitivity of} =) (transitivity of=)

But our initial assumption entails

1=2−b.1 = 2 - b. 1=2b.

So:

1=2−b=321 = 2 - b = \frac{3}{2} 1=2b=23

1=321 = \frac{3}{2} 1=23 (transitivity of=)\tiny (\textrm{transitivity of} =) (transitivity of=)

But obviously:

1≠321 \not= \frac{3}{2} 1=23

Therefore,

1=32∧1≠32.1 = \frac{3}{2} \land 1 \not= \frac{3}{2}. 1=231=23.

Contradiction! We derived this from our initial assumption. A contradiction cannot be true, so neither can anything that entails a contradiction. Thus, our initial assumption must be false. Since this conclusion follows given an arbitrary integer x,x, x, the proof just given demonstrates that 1+b=2−b=11 + b = 2 - b = 1 1+b=2b=1 is false regardless of what integer you substitute for 22 2 in s1.s_{1}. s1.

Now let us prove by contradiction that

1=2+c=1−c1 = 2 + c = 1 - c 1=2+c=1c

is false.

Assume the following, arguendo:

1=2+c=1−c1 = 2 + c = 1 - c 1=2+c=1c

Then:

2+c=1−c2 + c = 1 - c 2+c=1c

2+2c=12 + 2c = 1 2+2c=1 (added c to both sides)\tiny (\textrm{added } c \textrm{ to both sides}) (added c to both sides)

2c=−12c = -1 2c=1 (subtracted 2 from both sides)\tiny (\textrm{subtracted } 2 \textrm{ from both sides}) (subtracted 2 from both sides)

c=−12c = -\frac{1}{2} c=21 (divided both sides by 2)\tiny (\textrm{divided both sides by } 2) (divided both sides by 2)

2+c=2−12=322 + c = 2 - \frac{1}{2} = \frac{3}{2} 2+c=221=23

2+c=322 + c = \frac{3}{2} 2+c=23 (transitivity of=)\tiny (\textrm{transitivity of} =) (transitivity of=)

But our initial assumption entails:

1=2+c1 = 2 + c 1=2+c

So:

1=2+c=321 = 2 + c = \frac{3}{2} 1=2+c=23

1=321 = \frac{3}{2} 1=23 (transitivity of=)\tiny (\textrm{transitivity of} =) (transitivity of=)

But obviously:

1≠321 \not= \frac{3}{2} 1=23

Therefore,

1=32∧1≠32.1 = \frac{3}{2} \land 1 \not= \frac{3}{2}. 1=231=23.

Another contradiction! Since this conclusion follows given an arbitrary integer y,y, y, the proof just given demonstrates that 1=2+c=1−c1 = 2 + c = 1 - c 1=2+c=1c is false regardless of what integer you substitute for 44 4 in s1.s_{1}. s1.

Recall that s1xs_{1_x} s1x is an arithmetic progression only if

1+b=2−b=1.1 + b = 2 - b = 1. 1+b=2b=1.

And s1ys_{1_y} s1y is an arithmetic progression only if

1=2+c=1−c.1 = 2 + c = 1 - c. 1=2+c=1c.

But as the foregoing proofs by contradiction show, it is true neither that

1+b=2−b=11 + b = 2 - b = 1 1+b=2b=1

nor that

1=2+c=1−c.1 = 2 + c = 1 - c. 1=2+c=1c.

Therefore, neither s1xs_{1_x} s1x nor s1ys_{1_y} s1y is an arithmetic progression. But if you replace only 22 2 or 44 4 in ss s with exactly one integer, unequal to the one it replaces, the result is either s1xs_{1_x} s1x or s1y.s_{1_y}. s1y. So you cannot turn s1s_1 s1 into an arithmetic progression by replacing just 2,2, 2, or just 4,4, 4, with just one integer.

But if you can't get an arithmetic progression by thus replacing just 22 2 or 4,4, 4, and you can't do so by thus replacing just 11 1 or 5,5, 5, then you can't do so by thus replacing just 1,2,4,1, 2, 4, 1,2,4, or 5.5. 5. But that means you can't do so by replacing just one integer with just one integer, since 1,2,4,1, 2, 4, 1,2,4, and 55 5 are all the integers there are to replace in s1.s_1. s1.

Therefore, you cannot turn s1s_1 s1 into an arithmetic progression by replacing just one integer with just one integer.

From the above proof, what lesson should we draw concerning sequences other than s1?s_1? s1? This is my takeaway.

Let s3s_3 s3 be some sequence of integers x1,x2,…,xℓ−1,xℓx_1, x_2, \dots , x_{\ell-1}, x_\ell x1,x2,,x1,x of length ℓ≥4.\ell \geq 4. 4. (To be clear, we know s3s_3 s3 includes the four values x1,x2,xℓ−1,x_1, x_2, x_{\ell-1}, x1,x2,x1, and xℓ.x_\ell. x. We don't know if s3s_3 s3 includes other values.) Let 1≤i≤ℓ.1 \leq i \leq \ell. 1i. Let xix_i xi be the ithi^{\textrm{th}} ith number in s3.s_3. s3. Let di=xi+1−xi.d_i = x_{i + 1} - x_i. di=xi+1xi. Let step ii i be the step in s3s_3 s3 from xix_i xi to xi+1.x_{i + 1}. xi+1.

Let s3zs_{3_z} s3z be the sequence resulting from replacing xix_i xi with an arbitrary integer z.z. z. Let 1≤iz≤ℓ.1 \leq i_z \leq \ell. 1iz. Let xizx_{i_z} xiz be the izthi_z^{\textrm{th}} izth number in s3z.s_{3_z}. s3z. Let diz=xi+1z−xiz.d_{i_z} = x_{i + 1_z} - x_{i_z}. diz=xi+1zxiz. Let step izi_z iz be the step in s3zs_{3_z} s3z from xizx_{i_z} xiz to xi+1z.x_{i + 1_z}. xi+1z. The subscript of xx x in this last expression should be read as (i+1)z,(i + 1)_z, (i+1)z, not as the expression i+1zi + 1_z i+1z with which 1z+i1_z + i 1z+i is interchangeable.

The successor of xix_i xi or xizx_{i_z} xiz is, respectively, xi+1x_{i + 1} xi+1 or xi+1z.x_{i + 1_z}. xi+1z. The predecessor of xix_i xi or xizx_{i_z} xiz is, respectively, xi−1x_{i - 1} xi1 or xi−1z.x_{i - 1_z}. xi1z. Note that replacing xix_i xi with a different integer changes only step i−1i - 1 i1 and step i.i. i. The predecessors of step (i−1)z(i - 1)_z (i1)z are indistinguishable from those of step i−1.i - 1. i1. The successors of step izi_z iz are indistinguishable from those of step i.i. i.

Replacing exactly one integer xix_i xi in s3s_3 s3 can only turn s3s_3 s3 into an arithmetic progression on the following condition:

FIXABLE: ∃y∃c(y−xi=c∧d1=⋯=di−1+c=di−c=⋯=dℓ−1).\text{\small F}\text{\tiny IXABLE}\text{\small : } \small \exists y \exists c (y - x_i = c \land d_1 = \dots = d_{i - 1} + c = d_i - c = \dots = d_{\ell - 1}). FIXABLEyc(yxi=cd1==di1+c=dic==d1).

Here is an informal, rough English translation of the logical notation above. There are integers yy y and cc c such that

(I) cc c is the difference between yy y and xi,x_i, xi, and

(II) lengthening step i−1i - 1 i1 (if there is one), and shortening step ii i (if there is one), by cc c units ensures all steps have the same size and direction.

Allow me, now, to prove that s3zs_{3_z} s3z is not an arithmetic progression if ¬FIXABLE.\neg\text{\small F}\text{\tiny IXABLE}. ¬FIXABLE.

Assume the following, arguendo:

s3zs_{3_z} s3z is an arithmetic progression, and ¬FIXABLE.\neg\text{\small F}\text{\tiny IXABLE}. ¬FIXABLE.

You know what we have to do. Derive a contradiction! From the fact that s3zs_{3_z} s3z is an arithmetic progression, it follows that

d1z=d2z=⋯=di−1z=diz=di+1z=⋯=dℓ−2z=dℓ−1z.d_{1_z} = d_{2_z} = \dots = d_{i - 1_z} = d_{i_z} = d_{i + 1_z} = \dots = d_{\ell - 2_z} = d_{\ell - 1_z} . d1z=d2z==di1z=diz=di+1z==d2z=d1z.

By the definitions of xix_i xi and s3z,s_{3_z}, s3z, xix_i xi is the ithi^{\textrm{th}} ith number in s3,s_3, s3, and s3zs_{3_z} s3z is the sequence resulting from substituting zz z for xix_i xi in s3.s_3. s3. Thus, the ithi^{\textrm{th}} ith number in s3zs_{3_z} s3z is zz z rather than xi.x_i. xi. By definition, xizx_{i_z} xiz is the ithi^{\textrm{th}} ith number in s3z.s_{3_z}. s3z. So, given that xizx_{i_z} xiz and zz z are each the ithi^{\textrm{th}} ith number in s3z,s_{3_z}, s3z, it must be that xiz=z.x_{i_z} = z. xiz=z.

Since xizx_{i_z} xiz is the only number in s3zs_{3_z} s3z that differs from the number at the corresponding position in s3,s_3, s3,

∀j≠i(xj=xjz).\forall j \neq i (x_j = x_{j_z}). j=i(xj=xjz).

So, xi+1z=xi+1.x_{i + 1_z} = x_{i + 1}. xi+1z=xi+1.

So, by the definition of diz,d_{i_z}, diz,

diz=xi+1−z.d_{i_z} = x_{i + 1} - z. diz=xi+1z.

Solving for xi+1,x_{i + 1}, xi+1,

xi+1=diz+z.x_{i + 1} = d_{i_z} + z. xi+1=diz+z.

Then, from the definition of diz,d_{i_z}, diz, we get

di−1z=xiz−xi−1z.d_{i - 1_z} = x_{i_z} - x_{i - 1_z}. di1z=xizxi1z.

So, seeing as xiz=zx_{i_z} = z xiz=z and xi−1z=xi−1,x_{i - 1_z} = x_{i - 1}, xi1z=xi1, we may conclude that

di−1z=z−xi−1.d_{i - 1_z} = z - x_{i - 1}. di1z=zxi1.

Then we solve for xi−1x_{i - 1} xi1 as follows:

xi−1=z−di−1z.x_{i - 1} = z - d_{i - 1_z}. xi1=zdi1z.

Now let's take our solutions for xi+1x_{i + 1} xi+1 and xi−1,x_{i - 1}, xi1, and combine them with the following information. The definition of did_i di implies that xi+1=di+xix_{i + 1} = d_i + x_i xi+1=di+xi and xi−1=xi−di−1.x_{i - 1} = x_i - d_{i - 1}. xi1=xidi1. Taking all these facts into account, we see both that

di+xi=xi+1=diz+zd_i + x_i = x_{i + 1} = d_{i_z} + z di+xi=xi+1=diz+z

and that

xi−di−1=xi−1=z−di−1z.x_i - d_{i - 1} = x_{i - 1} = z - d_{i - 1_z}. xidi1=xi1=zdi1z.

Of course, that means di+xi=diz+zd_i + x_i = d_{i_z} + z di+xi=diz+z and xi−di−1=z−di−1z.x_i - d_{i - 1} = z - d_{i - 1_z}. xidi1=zdi1z. Solving both these equations for z,z, z, we get

z=xi+di−dizz = x_i + d_i - d_{i_z} z=xi+didiz

as well as

z=xi−di−1−di−1z.z = x_i - d_{i - 1} - d_{i - 1_z}. z=xidi1di1z.

From those two equations, we derive

xi+di−diz=xi−di−1−di−1z,x_i + d_i - d_{i_z} = x_i - d_{i - 1} - d_{i - 1_z}, xi+didiz=xidi1di1z,

which we simplify to

di−diz=di−1z−di−1.d_i - d_{i_z} = d_{i - 1_z} - d_{i - 1}. didiz=di1zdi1.

From our assumption arguendo that s3zs_{3_z} s3z is an arithmetic progression, it follows that di−1z=diz.d_{i - 1_z} = d_{i_z}. di1z=diz. Given the conjunction of this equation with di−diz=di−1z−di−1,d_i - d_{i_z} = d_{i - 1_z} - d_{i - 1}, didiz=di1zdi1, it is provable that

diz=di+di−12d_{i_z} = \frac{d_i + d_{i - 1}}{2} diz=2di+di1

which can be rewritten as

di−1=2diz−di.d_{i - 1} = 2d_{i_z} - d_i. di1=2dizdi.

Because s3zs_{3_z} s3z is an arithmetic progression, indiscernible from s3s_3 s3 apart from z’sz\textrm{'s} z’s having been substituted for xi,x_i, xi, we know the following:

∀j((j≠i−1∧j≠i)→dj=djz).\forall j ((j \neq i - 1 \land j \neq i) \to d_j = d_{j_z}). j((j=i1j=i)dj=djz).

Time for another proof by contradiction! We want to establish the truth of

di−1+(z−xi)=di−(z−xi),d_{i - 1} + (z - x_i) = d_i - (z - x_i), di1+(zxi)=di(zxi),

so we assume the negation of that for the sake of argument:

di−1+(z−xi)≠di−(z−xi).d_{i - 1} + (z - x_i) \neq d_i - (z - x_i). di1+(zxi)=di(zxi).

From this we derive

di−1≠2diz−did_{i - 1} \neq 2d_{i_z} - d_i di1=2dizdi

which contradicts our previous conclusion that

di−1=2diz−di.d_{i - 1} = 2d_{i_z} - d_i. di1=2dizdi.

Therefore,

di−1+(z−xi)=di−(z−xi)d_{i - 1} + (z - x_i) = d_i - (z - x_i) di1+(zxi)=di(zxi)

which completes our subproof!

It goes without saying that both the integer zz z and the difference z−xiz - x_i zxi exist. So, we have found a yy y and a cc c such that

y−xi=c∧d1=⋯=di−1+c=di−c=⋯=dℓ−1.y - x_i = c \land d_1 = \dots = d_{i - 1} + c = d_i - c = \dots = d_{\ell - 1}. yxi=cd1==di1+c=dic==d1.

If you're curious, zz z is our y,y, y, and z−xiz - x_i zxi is our c.c. c. That is, we can go from

z−xi=z−xi∧d1=⋯=di−1+(z−xi)=di−(z−xi)=⋯=dℓ−1\small z - x_i = z - x_i \land d_1 = \dots = d_{i - 1} + (z - x_i) = d_i - (z - x_i) = \dots = d_{\ell - 1} zxi=zxid1==di1+(zxi)=di(zxi)==d1

to

∃y∃c(y−xi=c∧d1=⋯=di−1+c=di−c=⋯=dℓ−1).\exists y \exists c (y - x_i = c \land d_1 = \dots = d_{i - 1} + c = d_i - c = \dots = d_{\ell - 1}). yc(yxi=cd1==di1+c=dic==d1).

And then we've established FIXABLE.\text{\small F}\text{\tiny IXABLE}. FIXABLE. So we have finally derived a contradiction from our initial assumptions. Recall what those assumptions were: s3zs_{3_z} s3z is an arithmetic progression, and ¬FIXABLE.\neg\text{\small F}\text{\tiny IXABLE}. ¬FIXABLE. From these we ultimately concluded FIXABLE,\text{\small F}\text{\tiny IXABLE}, FIXABLE, which contradicts the second of our two initial assumptions.

So, either s3zs_{3_z} s3z is not an arithmetic progression, or FIXABLE.\text{\small F}\text{\tiny IXABLE}. FIXABLE. But this disjunction is just another way of saying s3zs_{3_z} s3z is not an arithmetic progression if ¬FIXABLE.\neg\text{\small F}\text{\tiny IXABLE}. ¬FIXABLE.

And that's what we set out to prove!