point r has coordinates (a,b). the point is reflected across the x axis and then translated 5 points to the right to create point s. Create an expression that represent the y coordinates of point s

1 answer

(a,b) ---> reflected across the x-axis ---> (a, -b)
(a,-6) ---> translated 5 units to the right ---> (a+5, -b)