Transition

by t0rajir0u, Aug 20, 2008, 6:55 AM

Got into Cambridge (edit: this sentence means that I flew into the city of Cambridge, MA because I am going to MIT) a few days ago; writing time is currently nonexistent, so updates will be rare until at least after orientation is over. In the meantime, here's a fun problem (posted in the style of MellowMelon):

Let $ k, n$ be positive integers such that $ k | n^2 - 1$ and consider an $ n \times n$ chessboard. Describe, with proof, all squares $ S$ on the chessboard such that there exists a tiling by $ 1 \times k$ tiles such that the only uncovered square is $ S$.

(The original problem was given with cases $ k = 3, n = 8$ and $ k = 4, n = 9$.)

Comment

8 Comments

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
One possible approach is generalizing the concept of coloring by using complex numbers (Yufei called them weights). Since often these "board" problems require coloring twice for each orientation, you might want some way to encode both configurations together.

First thing that came to mind was quaternions, but noncommutativity would probably make things fail. This problem of encoding two things at the same time is actually pretty interesting; going to keep working on that.

by MellowMelon, Aug 22, 2008, 3:52 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
I was thinking the same thing about complex numbers. If you say $ z$ is the $ k^{th}$ root of unity and then assign the square in the $ r^{th}$ row and $ c^{th}$ column with the weight of $ z^r z^c$, then when you sum all the weights and factor you get $ (1 + z + \cdots + z^{n - 1})^2$, but since the sum of all the weights covered by a single $ 1\times k$ block is 0, the quantity $ (1 + z + \cdots + z^{n - 1})^2$ is the same as the weight of the uncovered block.

You can probably get a lot with this. If the uncovered block is $ z^t$ then

$ 1 + z + \cdots + z^{n - 1} = \pm z^{t/2}$

EDIT - it clearly is possible with $ k$ even though, so something I did is completely wrong.
EDIT AGAIN - oh I confused two variables. fixed.

by tjhance, Aug 22, 2008, 12:00 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
There's a more general way to assign weights: one assigns position $ (r, c)$ the weight $ z^{ar + bc}$ where $ a, b$ are both relatively prime to $ k$. It becomes necessary to do this in the $ k = 3, n = 8$ case (where there are only two different useful colorings). In the $ k = 4, n = 9$ case, I used a slightly more general coloring (starting from a $ 4 \times 4$ permutation matrix satisfying certain constraints) that I can't motivate by any nice patterns like $ z^{ar + bc}$.

Also: this is somewhat obvious from the complex number computation, but this problem is easier (say, in the two cases I gave) when either $ k | n-1$ or $ k | n+1$. If neither is the case, I believe it is necessary to split $ k$ up into the factors dividing $ n-1$ and the factors dividing $ n+1$.

Also also: the big problem with coloring proofs in general is that they only give necessary conditions. Sufficient conditions are difficult; for example, $ k = 4, n = 9$ has two obvious colorings which, put together, give you four extra squares that do not in fact satisfy the problem constraints (which is why I needed to use the slightly more general coloring). It might be possible to circumvent this difficulty by summing over all possible colorings in the appropriate way.

by t0rajir0u, Aug 23, 2008, 2:33 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Quote:
Also: this is somewhat obvious from the complex number computation, but this problem is easier (say, in the two cases I gave) when either $ k|n-1$ or $ k|n+1$. If neither is the case, I believe it is necessary to split $ k$ up into the factors dividing $ n-1$ and the factors dividing $ n+1$.

Hm, really? Because it seems to me that by my equation

$ (1+z+\cdots +z^{n-1})^2=z^t$

we need $ 1+z+\cdots +z^{n-1}$ to have absolute value of $ 1$. But couldn't this only happen when $ n\equiv 1\mod k$ or $ n\equiv -1\mod k$?

by tjhance, Aug 24, 2008, 1:54 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
I mean if $ k = ab$ such that $ a | n+1, b | n-1$ (and for simplicity $ k$ is odd) it might be necessary to superimpose $ a$-colorings and $ b$-colorings rather than consider $ k$-colorings.

by t0rajir0u, Aug 25, 2008, 4:33 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Right, but didn't I just show that if any tiling is possible then we will always have $ k|n - 1$ or $ k|n + 1$? Perhaps I made a mistake...

by tjhance, Aug 25, 2008, 4:32 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Oh. Hmm. It looks like you're right. That enforces some very strong necessary conditions, but again the sufficient conditions are more elusive.

by t0rajir0u, Aug 25, 2008, 8:46 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Okay then, onto the actual cases.

Case: $ k|n-1$.

Remember $ z=e^{\frac{2\pi i}{k}$, or $ z^k=1$.

So basically $ (1+z+\cdots+z^{n-1})^2=\left(\frac{z^n - 1}{z-1}\right)^2=\left(\frac{z-1}{z-1}\right)^2=1=z^0$.

So $ t\equiv 0\mod k$. (Remember above, we said $ z^t$ was the weight on the square that is not covered). Now, again, we labeled the square in the $ a^{th}$ row and $ b^{th}$ column with $ z^{a+b}$ (rows and columns indexed starting with 0). Hence $ a+b\equiv 0\mod k$ where $ a$ and $ b$ are the coordinates of the uncovered square. Looking from a different orientation (i.e., reflected) we get $ a+(k-b)\equiv 0\mod k$, or simply $ a-b\equiv 0\mod k$.

If $ k$ is odd, we see that we must then have $ a\equiv b\equiv 0\mod k$. It is easy to see that this is sufficient as well, it is very simple to come up with a valid tiling. (I'll try to describe it: just make $ k\times 1$ tiles straight out from the uncovered block to the walls, then each side of this "wall" divides into two smaller grids, each with height divisible by $ k$, so these portions can be easily tiled.)

On the other hand if $ k$ is even, we could also have $ a\equiv b\equiv \frac{k}{2}\mod k$. I haven't thought about this one much, but I will post more if I come to anything.

by tjhance, Aug 25, 2008, 11:20 PM

Various mathematical thoughts, ranging from problem-solving techniques to attempts to tie together related concepts.

avatar

t0rajir0u
Archives
+ March 2009
+ October 2007
+ May 2007
Shouts
Submit
  • orz $~~~~$

    by clarkculus, Jan 10, 2025, 4:13 PM

  • Insanely auraful

    by centslordm, Jan 1, 2025, 11:17 PM

  • Fly High :(

    by Siddharthmaybe, Oct 22, 2024, 8:34 PM

  • Dang it he is gone :(( /revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive/revive.

    by 799786, Aug 4, 2022, 1:56 PM

  • annoying precision

    by centslordm, May 16, 2021, 7:34 PM

  • rip t0rajir0u

    by OlympusHero, Dec 5, 2020, 9:29 PM

  • Shoutbox bump xD

    by DuoDuoling0, Oct 4, 2020, 2:25 AM

  • dang hes gone :(

    by OlympusHero, Jul 28, 2020, 3:52 AM

  • First shout in July

    by smartguy888, Jul 20, 2020, 3:08 PM

  • https://artofproblemsolving.com/community/c2448

    has more.

    -πφ

    by piphi, Jun 12, 2020, 8:20 PM

  • wait hold up 310,000
    people visited this man?!?!??

    by srisainandan6, May 29, 2020, 5:16 PM

  • first shout in 2020

    by OlympusHero, Apr 4, 2020, 1:15 AM

  • in his latest post he says he moved to wordpress

    by MelonGirl, Nov 16, 2019, 2:43 AM

  • Please revive!

    by AopsUser101, Oct 30, 2019, 7:10 PM

  • first shout in october fj9odiais

    by bulbasaur., Oct 14, 2019, 1:14 AM

128 shouts
Tags
About Owner
  • Posts: 12167
  • Joined: Nov 20, 2005
Blog Stats
  • Blog created: Dec 5, 2006
  • Total entries: 48
  • Total visits: 321832
  • Total comments: 202
Search Blog
a