Calculating the coordinates of a point using vectors involves understanding the relationship between the starting and ending points. Suppose the coordinates of point \( P \) are \( (x_P, y_P, z_P) \), and the vector \( \overrightarrow{PQ} \) that translates \( P \) to \( Q \) is given. Then we can find the coordinates of point \( Q \) using simple arithmetic.
- **Step 1:** Take the x-coordinate of point \( P \). Add or subtract the x-component of the vector to find \( x_Q \).
- **Step 2:** Do the same for the y-coordinate. Here, use the y-component of the vector.
- **Step 3:** Finally, calculate the z-coordinate using the z-component of the vector.
### Example:
Let's find point \( Q \) when \( P = (2, -3, 1) \) and \( \overrightarrow{PQ} = \begin{bmatrix} 2 \ 0 \ -3 \end{bmatrix} \):
- \( x_Q = 2 + 2 = 4 \)
- \( y_Q = -3 + 0 = -3 \)
- \( z_Q = 1 - 3 = -2 \)
This results in \( Q \) being located at \( (4, -3, -2) \). Itβs all about understanding the translation in each coordinate direction.