- Choose 2D or 3D. Two-dimensional vectors have x and y components. Three-dimensional vectors have x, y, and z. Select the dimension that matches your problem.
- Select an operation. Add and subtract combine corresponding components. Dot product gives a scalar showing how parallel two vectors are. Cross product (3D only) gives a vector perpendicular to both inputs. Magnitude gives the vector length. Unit vector normalizes A to length 1. Angle gives the angle between two vectors in degrees.
- Enter vector components. Type each component into the labeled fields. Results update instantly as you type.
Example: A = (1, 2, 3) and B = (4, 5, 6). Dot product = 1×4 + 2×5 + 3×6 = 4+10+18 = 32. Angle = arccos(32 / (√14 × √77)) = arccos(32/32.83) ≈ 12.93 degrees.