A certain square is to be drawn on a coordinate plane. One of the vertices must be on the origin, and the square is to have an area of 100. If all coordinates of the vertices must be integers, how many different ways can this square be drawn?
4
6
8
10
12
Each side of the square must have a length of 10. If each side were to be 6, 7, 8, or most other numbers, there could only be four possible squares drawn, because each side, in order to have integer coordinates, would have to be drawn on the x- or y-axis. What makes a length of 10 different is that it could be the hyptoneuse of a pythagorean triple, meaning the vertices could have integer coordinates without lying on the x- or y-axis.
For example, a square could be drawn with the coordinates (0,0), (6,8), (-2, 14) and (-8, 6). (It is tedious and unnecessary to figure out all four coordinates for each square).
If we lable the square abcd, with a at the origin and the letters representing points in a clockwise direction, we can get the number of possible squares by figuring out the number of unique ways ab can be drawn.
a has coordinates (0,0) and b could have coordinates:
(-10,0)
(-8,6)
(6,8)
(0,10)
(6,8)
(8,6)
(10,0)
(8, -6)
(6, -8)
(0, 10)
(-6, -8)
(-8, -6)
There are 12 different ways to draw ab, and so there are 12 ways to draw abcd.
The correct answer is E.
How do we figure out one of the points let alone 12?
Thank you for your help.