the expression in lisp is:
(* (+ a b) (- a (/ 1 b)))
the equivalent expression (i think) in java is:
(a + b) * (a - (1/b));