Skip to content

Commit

Permalink
simplification if division entry
Browse files Browse the repository at this point in the history
  • Loading branch information
JustS-js committed Jan 17, 2025
1 parent dfd4c9a commit 27c0da9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1669,7 +1669,7 @@
"mul.2": "As such:$(li)With two numbers, combines them into their product.$(li)With a number and a vector, removes the number from the stack and multiplies each component of the vector by that number.$(li)With two vectors, combines them into their $(l:https://www.mathsisfun.com/algebra/vectors-dot-product.html)dot product/$.",

"div.1": "Perform division or the cross product.",
"div.2": "As such:$(li)With two numbers, combines them into their quotient.$(li)With a number and a vector, removes the number and divides each element of the vector by it.$(li)With two vectors, combines them into their $(l:https://www.mathsisfun.com/algebra/vectors-cross-product.html)cross product/$.$(br2)In the first and second cases, the top of the stack or its components comprise the divisor, and the second-from-the-top or its components are the dividend.$(p)WARNING: Never divide by zero!",
"div.2": "As such:$(li)With two numbers, combines them into their quotient.$(li)With a number and a vector, removes the number and divides each element of the vector by it.$(li)With two vectors, combines them into their $(l:https://www.mathsisfun.com/algebra/vectors-cross-product.html)cross product/$.$(br2)In the first and second cases, the second-from-the-top of the stack is divided by the top of the stack.$(p)WARNING: Never divide by zero!",

"abs.1": "Compute the absolute value or length.",
"abs.2": "Replaces a number with its absolute value, or a vector with its length.",
Expand Down

0 comments on commit 27c0da9

Please sign in to comment.