To rotate a point (x, y) around the origin by an angle θ in a clockwise direction, you can use the following formula:
\[ (x', y') = (y, -x) \]
For Point B(-2, 3), we need to rotate it 270° clockwise. However, a 270° clockwise rotation is equivalent to a 90° counterclockwise rotation, which we can use the same formula.
Using the formula for a 90° counterclockwise rotation:
- Start with the point B(-2, 3).
- Apply the formula: \[ (x', y') = (y, -x) = (3, -(-2)) = (3, 2) \]
Thus, the coordinates of point \( B' \) after the rotation are:
\[ B' = (3, -2) \]
So the final answer is:
\[ B' = (3, -2) \]