Browse Source

Wrote about subtractives

Samuel W. Flint 7 years ago
parent
commit
a813e34c9c
1 changed files with 5 additions and 2 deletions
  1. 5 2
      lisp-cas.org

+ 5 - 2
lisp-cas.org

@@ -1500,7 +1500,7 @@ Rules are stored rather simply, in a list of cons cells, with the ~CAR~ being th
   (defvar *rules* '())
 #+END_SRC
 
-** WORKING Rules [6/9]
+** WORKING Rules [7/9]
 :PROPERTIES:
 :CREATED:  <2016-06-13 Mon 22:52>
 :ID:       fdcebadd-b53d-4f59-99a4-4a3782e017a2
@@ -1647,12 +1647,15 @@ This is quite simple, differentiate each term and add them together.  This is ac
     `(+ ,@(map 'list #'(lambda (term) (differentiate term)) terms)))
 #+END_SRC
 
-*** TODO Subtractives
+*** DONE Subtractives
+CLOSED: [2016-08-20 Sat 13:13]
 :PROPERTIES:
 :CREATED:  <2016-06-14 Tue 10:30>
 :ID:       063f61ee-6fd9-4286-9008-9c80ef0985a5
 :END:
 
+Following the same pattern as for additives, subtractives map over, deriving each term and prepending the ~-~ symbol to render the derivative of the originally passed subtractive equation.
+
 #+Caption: Subtractives
 #+Name: sd-subtractives
 #+BEGIN_SRC lisp