Browse Source

Wrote about formatting polynomial terms

Samuel W. Flint 7 years ago
parent
commit
2999839a60
1 changed files with 11 additions and 2 deletions
  1. 11 2
      larcs.org

+ 11 - 2
larcs.org

@@ -1866,7 +1866,7 @@ Rule retrieval is done by taking an expression, comparing it against given class
                            ,*rules*))))
 #+END_SRC
 
-** WORKING Rules [2/9]
+** WORKING Rules [3/9]
 :PROPERTIES:
 :CREATED:  <2016-06-14 Tue 17:18>
 :ID:       90accad9-81d0-4aaf-9c7f-2418e36e1f3c
@@ -1935,12 +1935,21 @@ As with numbers, variables are a relatively simple thing to format.  If the vari
           (format nil "{~A}" (string-downcase var)))))
 #+END_SRC
 
-*** TODO Polynomial Terms
+*** DONE Polynomial Terms
+CLOSED: [2017-01-19 Thu 20:13]
 :PROPERTIES:
 :CREATED:  <2016-06-14 Tue 17:23>
 :ID:       ac2283d0-da70-4672-90cb-08511bd9105e
 :END:
 
+Polynomial Terms are a specific classification, defined as follows:
+
+ - A variable, raised to a numeric power.
+ - A number, followed by a single variable.
+ - A number, followed by a variable raised to a numeric power.
+
+These are typeset as a single unit, ensuring readability.
+
 #+Caption: Polynomial Terms
 #+Name: stf-polynomial-terms
 #+BEGIN_SRC lisp