Compose

From NARS2000
Revision as of 01:24, 10 April 2008 by Sudleyplace (talk | contribs) (New page: In the following descriptions, <apll><i>f</i></apll> and <apll><i>g</i></apll> represent functions and <apll><i>a</i></apll> and <apll><i>b</i></apll> represent variables. * The form <apl...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

In the following descriptions, f and g represent functions and a and b represent variables.

  • The form fg may be used both monadically and dyadically.
Monadic: Z←fgR is identical to Z←fgR.
Dyadic: Z←LfgR is identical to Z←(gL)fgR.
  • The form f∘b may be used monadically only.
Monadic: Z←(fb) R is identical to Z←R f b.
Note that parentheses are required around the function to avoid interpreting b R as a strand.
  • The form ag may be used monadically only.
Monadic: Z←agR is identical to Z←a g R.
  • The derived function from the form ab always signals a SYNTAX ERROR.