Skip to content

Commit

Permalink
Fix typo in cross product formula
Browse files Browse the repository at this point in the history
The last row of the cross product formula is given as:
> π‘₯[0]⋅𝑦[1]βˆ’π‘¦[1]β‹…π‘₯[1]

It should be:
> π‘₯[0]⋅𝑦[1]βˆ’π‘¦[0]β‹…π‘₯[1]

This PR makes this change.
  • Loading branch information
andystanton authored Mar 14, 2022
1 parent 8edb442 commit cbdb2d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sl4/cross.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
<mo>βˆ’</mo>
<mi>y</mi>
<mo stretchy="false">[</mo>
<mn>1</mn>
<mn>0</mn>
<mo stretchy="false">]</mo>
<mo lspace="2px" rspace="2px">β‹…</mo>
<mi>x</mi>
Expand Down

0 comments on commit cbdb2d1

Please sign in to comment.