Reflection over the X axis and a translation of shifting right 10 units

the coordinates of the points after the given transformations are applied:
Let's assume we start with a random point with coordinates (x, y).
If first we apply a reflection over the x-axis, we just change the sign of the y-component, so at this point we have (x, -y).
Then we apply a shift of 10 units to the right, so the image after the transformation is:
(x + 10, -y)
So we just have the transformation:
(x, y) ⇒ (x + 10, -y)
We need to apply that to the 3 given points:
These are the coordinates of the points after the given transformations are applied
If you want to learn more about transformations:
https://brainly.com/question/4289712
#SPJ1