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

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

Section 1.4 end, distributive rule math typo #365

Closed vitanza closed 10 years ago

vitanza commented 10 years ago

At the very end of section 1.4, in the box "More Number Properties with Vectors", there is a math typo in the first distributive rule formula. The first multiplication should be an addition.

Currently:

(n * m) * v  =  n * v  +  m * v

Corrected:

(n + m) * v  =  n * v  +  m * v
shiffman commented 10 years ago

duplicate of https://github.com/shiffman/The-Nature-of-Code-archive/issues/298