What is the dot product of two vectors?
+
The dot product of two vectors is a scalar value calculated by multiplying their corresponding components and summing the results. It represents the magnitude of one vector projected onto another and is given by \( \mathbf{A} \cdot \mathbf{B} = |\mathbf{A}| |\mathbf{B}| \cos \theta \), where \( \theta \) is the angle between the vectors.
How is the cross product of two vectors defined?
+
The cross product of two vectors in three-dimensional space is a vector perpendicular to both original vectors. Its magnitude equals the area of the parallelogram formed by the vectors and is given by \( |\mathbf{A} \times \mathbf{B}| = |\mathbf{A}| |\mathbf{B}| \sin \theta \), where \( \theta \) is the angle between them.
What is the geometric interpretation of the dot product?
+
The dot product measures how much one vector extends in the direction of another. Geometrically, it equals the product of the magnitude of one vector and the projection of the other onto it, reflecting the angle between the vectors.
What is the significance of the direction of the cross product vector?
+
The direction of the cross product vector is perpendicular to the plane formed by the two original vectors, following the right-hand rule: if you point your right-hand fingers along the first vector and curl them toward the second vector, your thumb points in the cross product's direction.
Can the dot product be zero? What does it imply?
+
Yes, the dot product is zero if the two vectors are orthogonal (perpendicular) to each other. This implies that the angle between the vectors is 90 degrees and they have no component in the direction of each other.
Is the cross product commutative?
+
No, the cross product is anti-commutative, meaning \( \mathbf{A} \times \mathbf{B} = - (\mathbf{B} \times \mathbf{A}) \). Reversing the order of the vectors reverses the direction of the resulting vector.
How do you calculate the cross product using components?
+
For vectors \( \mathbf{A} = (A_x, A_y, A_z) \) and \( \mathbf{B} = (B_x, B_y, B_z) \), the cross product is \( \mathbf{A} \times \mathbf{B} = (A_y B_z - A_z B_y, A_z B_x - A_x B_z, A_x B_y - A_y B_x) \).
What are common applications of dot and cross products?
+
Dot products are used to find angles between vectors, projections, and work done by a force. Cross products are used in physics to find torque, angular momentum, and in computer graphics to calculate normals for lighting.
How do dot and cross products differ in terms of their results?
+
The dot product results in a scalar value indicating the magnitude of projection between vectors, whereas the cross product results in a vector perpendicular to the original vectors, representing the area spanned by them.