This month's puzzle is straightforward in comparison to January's puzzle. The first thing to find was the upper bound of the K-ominos. Given our constraints and a 13×13 board, the max K-omino bound was 17.
max K=17: 217⋅(17+1)=153≤169
This is only an upper bound value. Therefore, each equation must yield an answer between 1 to 17. When looking through the equations, there were obvious constraints for each constant.
b2 and (b−1)2
b2∈{1,...,17} and (b−1)2∈{1,...,17}. Given that b2=n and (b−1)2=m, then
b2−(b−1)2=2b−1=m−n
b=2m−n+1=±m
This forces m to be a perfect square, then b is an integer
b2≤16 then b∈{−4,−3,−2,−1,1,2,3,4}
(b−1)2≥1 so b=1
(b−1)2≤16→∣b−1∣≤4 so b∈{−3,...5}
Thus b∈{−3,−2,−1,2,3,4}
aa+2
Given that aa+2∈Z and aa+2∈{1,2,...,17}.
a+2=ak→a+2=a2k2
a2k2−a−2=0
a=2k21±1+8k2
1+8k2 must be a perfect square for a to be rational
Checking values 1 to 17, the only k that work are k=1,6 where a=2 and 41, respectively
This narrows the search space a lot
Eliminating a=2
We need c>a for c−a to be real and nonzero (expression 11)
We also need logc(a) to be a positive integer n, which means a=cn
If a=2, then cn=2 with c>2
But c>2 and n≥1 gives cn>2, so cn=2 is impossible
Therefore a=2 is ruled out, leaving:
a=41
Narrowing b with a=41
The expression 4a−5b must be a positive integer
Substituting a=41: 4⋅41−5b=1−5b
For this to land in {1,...,17} we need b≤0
This eliminates b∈{2,3,4}, leaving:
b∈{−3,−2,−1}
Pinning c from c+2a
The expression c+2a=c+21 must be a positive integer m, so:
c=m−21 for m∈{1,2,...,17}
The constraint c>a=41 requires m≥1
c=1 requires m=23 (always satisfied since m is an integer)
So c∈{21,23,25,...}
Eliminating b=−1
cb=c−1=c1 must be a positive integer, so c=j1 for some positive integer j
From above, c=m−21, meaning j1=m−21
The only solution with m a positive integer and j a positive integer is m=1,j=2, giving c=21
(b+c)/(c−1)=(−1+21)/(21−1)=(−21)/(−21)=1
b2−b/c=1−(−1)/(21)=1+2=3
(b+9)/c−a=8/41=8/21=16
(ab−4)/(6c+1)=(4−4)/4=0
The expression (ab−4)/(6c+1)=0 is not a positive integer, so b=−1 fails
Eliminating b=−2
cb=c−2=c21 must be a positive integer, so c2=j1 giving c=j1
Combined with c=m−21: m−21=j1
For m=1: j1=21, so j=4, giving c=21
(ab−4)/(6c+1)=((41)−2−4)/(3+1)=(16−4)/4=3
(b3+2c)/(b+2c)=(−8+1)/(−2+1)=−7/−1=7
6c−4b=3+8=11
logc(a)=log1/2(1/4)=2
b/(a−1)=−2/(1/4−1)=−2/(−3/4)=8/3
The expression b/(a−1)=38∈/Z, so b=−2 fails
b=−3 and c=21
With b=−3 and a=41, cb=c−3 must be a positive integer, so c=j−1/3 for positive integer j
Combined with c=m−21, trying m=1 gives c=21 and c−3=8
Checking b/(a−1)=−3/(1/4−1)=−3/(−3/4)=4
All 37 expressions now evaluate to positive integers:
Given that 12 was the most constrained k-omino. There were only around 5 configurations that made sense. Building from the 12k-omino, I programmatically found the grid. I was able to solve this months puzzle to get the answer 9072.