An ant starts at the origin (0,0), facing north. On day 1, it moves 1 unit forward to (0,1) and turns right 90 degrees. On day 2, it moves 2 units forward to (2,1) and turns right 90 degrees. On day 3, it moves 3 units forward to (2,-2) and turns right 90 degrees. It keeps doing this—on day i, it moves i units forward and turns right 90 degrees. After 65 days, where is the ant?
Can someone tell me how to go about this? Thank you...

Hint - notice that the motion in the $x,y$ axis is independent - on an even day $2n$ it moves in the $x$ direction $(-1)^{n+1}\cdot 2n$ steps, and on an odd day $2n+1$ it moves in the $y$ direction $(-1)^{n}\cdot (2n+1)$ steps. You can thus solve each individual problem for $x$ and $y$. In $y$ you have - $$1-3+5-7+...=(1-3)+(5-7)+...=-2-2-...$$ And you can do something similar for $x$. Think how many terms are in the corresponding sums, and if possibly the last term in the sum might be different from $-2$ (if there's an odd number of terms).