nature-of-code / noc-book

The Nature of Code book (archived repo, see README for new repo / build system!)

Home Page:http://natureofcode.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chapter 1.4 "More number properties with vectors"

MPreloaded opened this issue · comments

Correct me if I'm wrong, but the distributive rule with two scalars and one vector contains a small mistake:

The distributive rule with 2 scalars, 1 vector: (n x m) x v = n x v + m x v

Should be:

The distributive rule with 2 scalars, 1 vector: (n + m) x v = n x v + m x v