+0  
 
0
643
1
avatar

(+ 2 (+ (* 3 (/ 12 4)) 4))

 Sep 15, 2016
 #1
avatar+23251 
0

(+ 2 (+ (* 3 (/ 12 4)) 4))

 

Working from the inside out:  / 12 4  =  3

(+ 2 (+ (* 3 3) 4))

Then:                                     * 3 3  =  9

(+ 2 (+ 9 4))

And:                                       + 9 4  =  13

(+ 2 13)

Finally:                                   + 2 13  =  15

 

This is in "prefix notation"  or  "Polish notation".

 Sep 15, 2016

2 Online Users