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:
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:
And so with the pattern, we can find where 2008 will sit.
We can now divide by 8 - the remainder will tell us what column:
With the column settled, let's now find the row. We can divide 2008 by 8:
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:
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#
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:
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.
Every second line ends on a multiple of 16.
So find out how many groups of 16 can be obtained from
That means there are
The last row will end on
But each group consists of
Row
There are four multiples of 2 needed to make
The four multiples of 2 in row
A different approach!
row 251
column 4
Explanation:
Consider the first row of 2 4 6 8
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
Now consider the first 3 rows of the content of the matrix
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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~