Explorar o código

Wrote about Polynomial Term classification

Samuel W. Flint %!s(int64=8) %!d(string=hai) anos
pai
achega
87d3944a00
Modificáronse 1 ficheiros con 9 adicións e 7 borrados
  1. 9 7
      lisp-cas.org

+ 9 - 7
lisp-cas.org

@@ -327,7 +327,7 @@ Another utility macro is ~when-classified-as~, which takes a ~classification~, a
        ,@body))
 #+END_SRC
 
-** WORKING Classifications [10/13]
+** WORKING Classifications [11/13]
 :PROPERTIES:
 :CREATED:  <2016-05-02 Mon 13:56>
 :ID:       dcce4a6b-1b2d-4638-a82b-0c4917b0698a
@@ -548,17 +548,19 @@ Rationals are non-atomic, three elements long, and the first element is the symb
          (eq '/ (first expression)))))
 #+END_SRC
 
-*** TODO Polynomial Terms
+*** DONE Polynomial Terms
+CLOSED: [2016-06-15 Wed 00:17]
 :PROPERTIES:
 :CREATED:  <2016-05-02 Mon 14:28>
 :ID:       37da52b7-98a0-4a16-8a17-a62fcff2ba59
 :END:
 
-# To classify a polynomial term, The expression is checked to see if it satisfies one of the following:
-#  - Numeric
-#  - Variable
-#  - Power
-#  - Multiplicative that composed of a numeric and a power or variable.
+Polynomials are a compound classification:
+ - Numerics
+ - Variables
+ - Powers
+ - Multiplicatives that are a numeric and a variable
+ - Multiplicatives that are a numeric and a power
 
 #+Caption: Classify Polynomial Term
 #+Name: et-classify-polynomial-term