A farmer's rectangular field is partitioned into by grid of rectangular sections as shown in the figure. In each section the farmer will plant one crop: corn, wheat, soybeans, or potatoes. The farmer does not want to grow corn and wheat in any two sections that share a border, and the farmer does not want to grow soybeans and potatoes in any two sections that share a border. Given these restrictions, in how many ways can the farmer choose crops to plant in each of the four sections of the field?
[asy] draw((0,0)--(100,0)--(100,50)--(0,50)--cycle); draw((50,0)--(50,50)); draw((0,25)--(100,25)); [/asy]
Problem 134
Official solution
There are possibilities for the top-left section. It follows that the top-right and bottom-left sections each have possibilities, so they have combinations. We have two cases:
The top-right and bottom-left sections have the same crop.
Note that of the combinations of the top-right and bottom-left sections satisfy this case, from which the bottom-right section has possibilities. Therefore, there are ways in this case.
The top-right and bottom-left sections have different crops.
Note that of the combinations of the top-right and bottom-left sections satisfy this case, from which the bottom-right section has possibilities. Therefore, there are ways in this case.
Together, the answer is
~Arcticturn ~MRENTHUSIASM