For direction problems, use a coordinate plane with the starting point as (0,0). Track each move as a vector (x,y) based on direction (North: +y, East: +x, etc.). Sum the x and y components to find the final position, then calculate the straight-line distance using the distance formula: $\sqrt{x^2 + y^2}$. Draw a diagram to visualize the path and check for consistency.