Reasoning · Grade 2-2 Rules and Problem Solving

Problem

Decode the shape-to-number rule

Each symbol means move that many grid squares in the arrow's direction. Every move starts where the last one ended, in the given order. Trace left 2, down 2, right 1, up 1, right 1, down 3, left 4 and say where the line ends.
Your answer
How to solve
Strategy Draw a Diagram — The symbols are directions for drawing, so the natural tool is to draw on the grid. We treat each symbol as one small subproblem -- one move from the current point -- and chain them in order to trace the whole line.
1STEP 1

Read the code from the legend

The arrow gives the direction and the number the square count.

2STEP 2

Mark a starting point and make the first three moves

Left 2, down 2, right 1 draws three joined segments.

arrow 2, ↓ 2, → 1
3STEP 3

Make the next two moves

Up 1 and right 1 make a small notch.

↑ 1, → 1
4STEP 4

Make the last two moves

Down 3 and left 4 finish with two long segments.

↓ 3, arrow 4
5STEP 5

Find where the line ends

Totalling each axis puts the end 4 left and 4 down.

(-2+1+1-4)=-4 across, (-2+1-3)=-4 down
Answer
4 squares left and 4 squares below the start
The total drawn length is 2+2+1+1+1+3+4 = 14 squares, and following the arrows in order keeps every segment connected with no gaps. The net move (4 left and 4 below the start) matches adding the horizontal and vertical moves separately, so the drawing is consistent.
Takeaway

Each symbol is just 'go this many squares this way' -- follow them in order like footsteps and the line draws itself!

  • Read the code from the legend
  • Mark a starting point and make the first three moves
  • Make the next two moves
  • Make the last two moves
  • Find where the line ends