To translate a triangle, you add the translation values to each vertex's coordinates. The triangle has vertices at (4, 3), (8, 3), and (7, 5).
We need to translate the triangle to the right by 4 units and down by 2 units.
Here's how to do it for each vertex:
-
For the vertex (4, 3):
- Move right: \(4 + 4 = 8\)
- Move down: \(3 - 2 = 1\)
- New vertex: (8, 1)
-
For the vertex (8, 3):
- Move right: \(8 + 4 = 12\)
- Move down: \(3 - 2 = 1\)
- New vertex: (12, 1)
-
For the vertex (7, 5):
- Move right: \(7 + 4 = 11\)
- Move down: \(5 - 2 = 3\)
- New vertex: (11, 3)
So the new vertices after translation are:
- (8, 1)
- (12, 1)
- (11, 3)
Therefore, the correct response is: (8, 1), (12, 1), and (11, 3).