Skip to content

Commit

Permalink
fix: correct dot product formula
Browse files Browse the repository at this point in the history
  • Loading branch information
cuppajoeman committed Oct 14, 2024
1 parent 7530fd9 commit 7299ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/algebra/linear/vectors.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
Cross Product Vector Component Formula
</div>
<div class="content">
\[ \left( a _ 1 , a _ 2, a _ 3 \right) \times \left( b _ 1, b _ 2, b _ 3 \right) = \left( a _ 3 b _ 2 - a _ 3 b _ 2, a _ 3 b _ 1 - a _ 1 b _ 3, a _ 1 b _ 2 - a _ 2 b _ 1 \right) \]
\[ \left( a _ 1 , a _ 2, a _ 3 \right) \times \left( b _ 1, b _ 2, b _ 3 \right) = \left( a _ 2 b _ 3 - a _ 3 b _ 2, a _ 3 b _ 1 - a _ 1 b _ 3, a _ 1 b _ 2 - a _ 2 b _ 1 \right) \]
</div>
<div class="proof"></div>
</div>
Expand Down

0 comments on commit 7299ae0

Please sign in to comment.