Skip to content

Commit

Permalink
fix(vectors): fix cross product equation
Browse files Browse the repository at this point in the history
  • Loading branch information
cuppajoeman committed Sep 11, 2024
1 parent 11cbb99 commit 74ffefa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion html/algebra/linear/vectors.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,18 @@
<div class="title">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 _ 2 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 _ 3 b _ 2 - 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>

<p>
An easy way to remember this is ab 5 4 3
</p>

<div class="definition" id="definition-collinear">
<div class="title">Collinear</div>
<div class="content">
Expand Down

0 comments on commit 74ffefa

Please sign in to comment.