You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed a couple of mistakes in the definition of integrate (page 256) that probably slipped by testing. In the sketch below, I've indicated the mistakes with comments describing corrections:
(cond
((free-of exp x) `(* ,exp x)) ;; This should instead unquote x as in `(* ,exp ,x).
...
((starts-with exp '-)
(ecase ...
(1 (integrate (exp-lhs exp) x)) ;; This should instead build a unary minus operation to account for negation, as in `(- ,(integrate (exp-lhs exp) x)).
...
The text was updated successfully, but these errors were encountered:
I noticed a couple of mistakes in the definition of
integrate
(page 256) that probably slipped by testing. In the sketch below, I've indicated the mistakes with comments describing corrections:The text was updated successfully, but these errors were encountered: