From 2999839a60c830c3cd1a7db7e91941cfbf2acfbe Mon Sep 17 00:00:00 2001 From: "Samuel W. Flint" Date: Thu, 19 Jan 2017 20:14:04 -0600 Subject: [PATCH] Wrote about formatting polynomial terms --- larcs.org | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/larcs.org b/larcs.org index f8efbd538b1837b7e20d19a1b5d6a8f09f895369..8bdb94557a589e44a8fd57f220f9b63879f02488 100644 --- a/larcs.org +++ b/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