A traveler visits each point with integer coordinates where (each blue dot in the picture). At each of these points , the traveler eats
chocolate bar(s). How many chocolate bars will the traveler eat in all?
Notation . represents the largest value in the set .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let's go coordinate wise! ( 0 , 0 ) → 1
( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) → 3 × 3 1
( 2 , 0 ) , ( 2 , 1 ) , ( 0 , 2 ) , ( 1 , 2 ) , ( 2 , 2 ) → 5 × 5 1
( 3 , 0 ) , ( 3 , 1 ) , ( 3 , 2 ) , ( 0 , 3 ) , ( 1 , 3 ) , ( 2 , 3 ) , ( 3 , 3 ) → 7 × 7 1
( 4 , 0 ) , ( 4 , 1 ) , ( 4 , 2 ) , ( 4 , 3 ) , ( 0 , 4 ) , ( 1 , 4 ) , ( 2 , 4 ) , ( 3 , 4 ) , ( 4 , 4 ) → 9 × 9 1
→ 1 + 3 3 + 5 5 + 7 7 + 9 9 = 5