Quick answer
The dot product of two vectors returns a scalar. The cross product, in three-dimensional Euclidean space, returns a vector perpendicular to both inputs.
Dot product
For vectors a and b, the dot product can be written a\cdot b=\|a\|\|b\|\cos\theta. In coordinates, multiply corresponding components and add them. It is useful for angles, projections, orthogonality, and work.
Cross product
For three-dimensional vectors, a\times b is perpendicular to the plane containing a and b. Its magnitude is \|a\|\|b\|\sin\theta, and its direction follows the chosen orientation or right-hand rule.
Compare the outputs
| Operation | Output | Zero condition | Common use |
|---|---|---|---|
| Dot product | Scalar | Perpendicular vectors | Angle, projection, work |
| Cross product | Vector | Parallel vectors or a zero vector | Normal vector, torque, oriented area |
Worked example
Let a=(1,0,0) and b=(0,1,0). Then a\cdot b=0, showing that the vectors are perpendicular. Their cross product is a\times b=(0,0,1), a unit vector perpendicular to both.
Common mistakes
Do not use a multiplication dot when a scalar product is not defined. Do not treat the cross product as commutative: a\times b=-(b\times a). State the coordinate system and orientation when direction matters.
Verification checklist
Check the output type first. For a dot product, verify the result is scalar and test orthogonality. For a cross product, verify perpendicularity by taking dot products with both inputs and compare the magnitude with the parallelogram area.
Make the choice from the surrounding expression
For dot product cross product guide, do not decide from glyph shape alone. Read the operands, the mathematical subject, and the sentence around the notation. The same mark can represent different ideas in algebra, probability, set theory, analysis, or typography.
Verification questions
- Does the proposed meaning produce a mathematically valid sentence?
- Are the operands the right type for that meaning?
- Does a nearby definition or legend establish a local convention?
- Would replacing the mark with words preserve the intended statement?
Publishing check
Use the exact Unicode character or structured command, then inspect the final PDF, page, or presentation at normal and enlarged zoom. A font substitution can make distinct characters look similar even when their encoded identities differ.
How this guide was checked
Review method: Intent alignment review, notation/source verification, worked-example check, cross-format rendering review, and duplicate-content comparison for Dot Product vs Cross Product
Verified against: Official standards, primary documentation, and the page-specific sources listed below
What changed: Removed repeated sitewide boilerplate and added content-type-specific decision, verification, and applicability guidance for this exact task.
Page purpose: dot product cross product guide — Understand and apply the topic in mathematical or scientific writing
Automated quality check: Kept noindex until critical findings are resolved.
Verification references
These primary standards and official documentation pages were used to check character identity, syntax, or platform behavior described above.
- Unicode Technical Report #25: Unicode Support for MathematicsUnicode Consortium — Mathematical character usage, variants, and notation support.
- LaTeX Project DocumentationThe LaTeX Project — LaTeX syntax, authoring model, and official documentation links.
- MathML CoreW3C — Semantic web mathematics elements and browser behavior.
- Digital Library of Mathematical FunctionsNational Institute of Standards and Technology — Definitions, notation, identities, and reference material for mathematical functions.