id ab=13in then find the distance of A'B after a reflection over the x-axis and a rotation of 50 degrees clockwise

To find the distance of A'B after a reflection over the x-axis and a rotation of 50 degrees clockwise, we first need to determine the coordinates of point A' after the reflection and rotation.

1. Reflection over the x-axis transforms point A(x, y) to A'(x, -y). In this case, the y coordinate of point A is 13, so the y coordinate of A' after reflection is -13.

2. Rotation clockwise by 50 degrees can be achieved by multiplying the coordinates of A' by the rotation matrix:

[x'] [cosθ -sinθ] [x]
[y'] = [sinθ cosθ] [y]

The rotation matrix can be written as follows:

[x'] [cos(50) -sin(50)] [x]
[y'] = [sin(50) cos(50)] [y]

Since the x coordinate of A' remains the same after rotation, the transformation becomes:

[x'] [cos(50) -sin(50)] [x]
[y'] = [sin(50) cos(50)] [-y]

Evaluating the rotation matrix, we get the following transformations:

x' = x cos(50) - y sin(50)
y' = x sin(50) + y cos(50)

Plugging in the coordinates of A' after reflection, we have:

x' = x cos(50) - (-13) sin(50) = x cos(50) + 13 sin(50)
y' = x sin(50) + (-13) cos(50) = x sin(50) - 13 cos(50)

So, the coordinates of A' after the reflection and rotation are (x', y') = (x cos(50) + 13 sin(50), x sin(50) - 13 cos(50)).

To find the distance of A'B, we calculate the magnitude of the vector B'A':

Distance of A'B = sqrt((x'-x)^2 + (y'-y)^2)

Let's assume the coordinates of point B are (x2, y2). Since the distance between A and B is given as 13 inches, we have:

(x2-x)^2 + (y2-y)^2 = 13^2

Substituting the coordinates of A' in terms of x, we get:

((x cos(50) + 13 sin(50)) - x)^2 + ((x sin(50) - 13 cos(50)) - y)^2 = 13^2

Simplifying and expanding this equation, we can solve for x and y:

(x cos(50) + 13 sin(50) - x)^2 + (x sin(50) - 13 cos(50) - y)^2 = 169

Squaring and canceling the x^2 terms, we have:

(13 sin(50))^2 + (x sin(50) - 13 cos(50) - y)^2 = 169

Simplifying further:

(x sin(50) - 13 cos(50) - y)^2 = 169 - (13 sin(50))^2

This equation can be solved to obtain the values of x and y. Finally, we can calculate the distance of A'B using the formula:

Distance of A'B = sqrt((x'-x)^2 + (y'-y)^2)

Note: The actual numerical solution for x and y depends on the specific coordinates of point A and the exact value of the sin(50) and cos(50).