nature-of-code / The-Nature-of-Code-archive

The very first build system for The Nature of Code
http://natureofcode.com
914 stars 151 forks source link

distribute rule error #298

Closed shiffman closed 10 years ago

shiffman commented 11 years ago

The "More Number Properties with Vectors" insert at the end of section 1.4 ("More Vector Math") contains an error. It says:

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

It should say:

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

Note the first asterisk was changed to a plus sign.

shiffman commented 10 years ago

this issue is now tracked here: https://github.com/shiffman/The-Nature-of-Code/issues/18