Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in cross product formula #117

Merged
merged 1 commit into from
Mar 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo in cross product formula
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
commit cbdb2d1c14cdfdb7db5018f29b60e30b347f77ed
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