Exercise 1.4

(define (a-plus-abs-b a b) 
  ((if (> b 0) + -) a b))

The operator evaluates to + (addition) when b is positive, and to - (subtraction) when b is negative. Subtracting a negative is equivalent to adding its absolute value, so this procedure return \(a + |b|\) in all cases.