Look at the pattern of numbers below. In what row and column does the number 2008 sit?

#((A, B, C, D),(8, 6,4,2),(10,12,14,16),(24,22,20,18),(26,28,30,32),(vdots, vdots, vdots, vdots))#

3 Answers

column A (assumes 4 columns), row 251

Explanation:

We have a series of numbers that starts with:

#((A, B, C, D),(8, 6,4,2),(10,12,14,16),(24,22,20,18),(26,28,30,32),(vdots, vdots, vdots, vdots))#

The pattern is that of a "snake" - with the initial number, 2, being in column D, then the pattern increases by 2 for each number moving from D to A, then drops down to the next row and increases by 2 again as it moves from A to D.

We're looking for the column that 2008 will appear in.

We can describe the numbers in the various rows and columns this way:

#((A, B, C, D),(2+(2)3, 2+(2)2,2+(2)1,2+(2)0),(2+(2)4,2+(2)5,2+(2)6,2+(2)7),(2+(2)11, 2+(2)10,2+(2)9,2+(2)8),(2+(2)12,2+(2)13,2+(2)14,2+(2)15),(vdots, vdots, vdots, vdots))#

And so with the pattern, we can find where 2008 will sit.

#2008=2+2(n)#

#2n=2006#

#n=2006/2=1003#

We can now divide by 8 - the remainder will tell us what column:

#1003/8=125 3/8=>"column A"#

With the column settled, let's now find the row. We can divide 2008 by 8:

#2008/8=251#

We can see that 8 is on the first row, 16 on the second, 24 on the third, and so on. 2008 is evenly divisible 251 times, and so it's on the 251st row.

~~~~~
Another way to approach finding the column is to utilize bases, specifically base 8. Let's look at the chart we have, but in base 8 numbers:

#((A, B, C, D),(10, 6,4,2),(12,14,16,20),(30,26,24,22),(32,34,36,40),(vdots, vdots, vdots, vdots))#

We can convert 2008 from base 10 to base 8 and use this chart to find our number

Changing from base 10, which has places such as #1 (10^0), 10 (10^1), 100 (10^2)#, and so on, to base 8, which has #1 (8^0), 8 (8^1), 64 (8^3), and so on, involves finding the adjusted digits.

#8^3=512=> 512xxcolor(red)(3)=1536=>2008-1536=472#
#8^2=64=> 64xxcolor(green)(7)=448=>472-448=24#
#8^1=8=> 8xxcolor(brown)(3)=24=>24-24=0#

#2008_10=color(red)(3)color(white)(00)color(green)7color(white)(00)color(brown)3color(white)(00)0#
#color(white)(00000000)bar(8^3)color(white)(0)bar(8^2)color(white)(0)bar(8^1)color(white)(0)bar(8^0)#

The last two digits are 30, and so that puts us in column A.

To find the row, we can take the digits, drop the final digit (because it's a 0, we're not in the middle of a series and not needing to add 1 additional row as a "final partial row", and re-evaluate the number:

#3(8^2)+7(8^1)+3(8^0)=3(64)+7(8)+3(1)=251#

May 8, 2017

#2008# is the first number in row #251#

Explanation:

We are given a pattern of numbers which are all just multiples of 2.

However, in the first row they run from right to left and in the second from left to right. This pattern then repeats.

#((A, B, C, D),(8, 6,4,2),(10,12,14,color(blue)(16)),(24,22,20,18),(26,28,30,color(blue)(32)),(vdots, vdots, vdots, vdots))#

Every second line ends on a multiple of 16.

So find out how many groups of 16 can be obtained from #2008#

#2008 div 16 = 125.5#

That means there are #125# full groups of #color(blue)(16)#
The last row will end on #125 xx16 = color(blue)(2000)#

But each group consists of #2# rows.

#125 xx 2 = 250# rows.

Row #250# will therefore be:

#(1994,1996,1998,color(blue)(2000))#

There are four multiples of 2 needed to make #2008#

The four multiples of 2 in row #251# will be:

#((A, B, C, D),(8, 6,4,2),(10,12,14,16),(24,22,20,18),(26,28,30,32),(vdots, vdots, vdots, vdots),(1994,1996,1998,color(blue)(2000)),(2008,2006,2004,2002))#

Jul 17, 2017

A different approach!

row 251
column 4

Explanation:

Consider the first row of 2 4 6 8 #-> # 4 values.

So every full row will have 4 values

Notice that the last value of 8 divided 2 gives 4. Which is the count of values for row 1. Consequently the total count of values in the whole matrix is #2008-:2=1004 #

#color(green)("Count of values is 1004")#

Now consider the first 3 rows of the content of the matrix

#((2,4,6,8),(16,14,12,10),(18,20,22,24)) #

Row 1: 1 is odd and counts left to right
Row 2: 2 is even and counts right to left

This will be repeated throughout all the rows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#color(green)("The total count of rows "=(1004" values")/("4 values per row")=251" rows")#

#color(green)(251" is odd so it counts left to right")#

#color(green)("Thus 2008 is in the right most column:")#

#color(green)("row 251")#
#color(green)("column 4")#