Table/Lambda Calculus abstractions

From PKC
Revision as of 15:54, 13 May 2022 by Benkoo (talk | contribs) (Created page with "{| class="wikitable" |- ! Admissible data types !! Symbolic representation !! Description |- | Variable (<math>\alpha</math> conversion)|| ''x'' || A character or string repre...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Admissible data types Symbolic representation Description
Variable ( conversion) x A character or string representing a parameter or mathematical/logical value.
Substitution ( reduction) x.M)(value to be bound to x) This expression specifies how function is defined by replacing values of bound variable x in the lambda (λ) expression M.
Composition ( reduction) (M N) Specifying the sequential composition of multiple lambda expressions such as M and N.