notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

Associative.md (254B)


      1 # Associative
      2 
      3 MML Ch 2.2
      4 
      5 **Definition:** Associativity of an operation means that regardless of the location of parenthesis the resulting computation is still the same assuming the order of values is also the same.
      6 
      7 Example:
      8 
      9 a + (b + c) = (a + b) + c