Parcourir la source

Wrote about classifying logarithmics

Samuel W. Flint il y a 9 ans
Parent
commit
3f13ab4fa1
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 5 2
      manipulation.org

+ 5 - 2
manipulation.org

@@ -169,7 +169,7 @@ Following the case pattern, and to allow for cleaner code, I've defined the clas
            ,@conditions))))
 #+END_SRC
 
-** WORKING Classifications [8/13]
+** WORKING Classifications [9/13]
 :PROPERTIES:
 :CREATED:  <2016-05-02 Mon 13:56>
 :ID:       dcce4a6b-1b2d-4638-a82b-0c4917b0698a
@@ -347,12 +347,15 @@ This classifies both natural and non-natural exponentials.  It does so by ensuri
       (eq '* (first expression))))
 #+END_SRC
 
-*** WORKING Logarithmics
+*** DONE Logarithmics
+CLOSED: [2016-05-30 Mon 18:30]
 :PROPERTIES:
 :CREATED:  <2016-05-02 Mon 14:27>
 :ID:       0b733d75-e1ab-413f-8f8a-6a8a47db409c
 :END:
 
+This defines the classifications for logarithmic expressions, for both natural and non-natural bases.  For natural bases ($\ln x$), it ensures that expressions are of the form ~(log x)~, and for non-natural bases ($\log_{b}x$) are of the form ~(log expression base-expression)~.
+
 #+Caption: Classify Lograthmics
 #+Name: classify-logarithmics
 #+BEGIN_SRC lisp