Skip to content

Commit

Permalink
Correct dot product example calculation result (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlhk committed May 2, 2024
1 parent 7f59a51 commit 26ade6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/content/lessons/2016/dot-products/index.mdx
Expand Up @@ -32,7 +32,7 @@ Numerically, if you have two vectors of the same dimension, two lists of numbers
For instance, two vectors of length two dotted together looks like:

$$
\left[\begin{array}{l}1 \\ 2\end{array}\right] \cdot \left[\begin{array}{l}3 \\ 4\end{array}\right] = 1 \cdot 3+2 \cdot 4 = 9
\left[\begin{array}{l}1 \\ 2\end{array}\right] \cdot \left[\begin{array}{l}3 \\ 4\end{array}\right] = 1 \cdot 3+2 \cdot 4 = 11
$$

And two vectors of length four dotted together looks like:
Expand Down

0 comments on commit 26ade6e

Please sign in to comment.