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

The very first build system for The Nature of Code

Home Page:http://natureofcode.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Section 1.4 end, distributive rule math typo

vitanza opened this issue · comments

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

duplicate of #298