What is meant by “Capture-avoiding substitutions”?

早过忘川 提交于 2019-11-29 22:16:52

Normally, the specific variable names that we chose in the lambda calculus are meaningless - a function of x is the same thing as a function of a or b or c. In other words:

(λx.(λy.yx)) is equivalent to (λa.(λb.ba)) - renaming x to a and y to b does not change anything.

From this, you might conclude that any substitution is allowed - i.e. any variable in any lambda term can be replaced by any other. This is not so. Consider the inner lambda in the first expression above:

(λy.yx)

In this expression, x is "free" - it is not "bound" by a lambda abstraction. If we were to replace y with x, the expression would become:

(λx.xx)

This has an altogether different meaning. Both x's now refer to the argument to the lambda abstraction. That last x (which was originally "free") has been "captured"; it is "bound" by the lambda abstraction.

Substitutions which avoid accidentally capturing free variables are called, unimaginatively, "capture-avoiding substitutions."

Now, if all we cared about in lambda calculus was substituting one variable for another, life would be pretty boring. More realistically, what we want to be doing is replacing a variable with a lambda term. So we might replace a variable with a lambda abstraction (λx.t) or an application (x t). In either case, the same considerations apply - when we do the substitution, we want to ensure that we don't change the meaning of the original expression by accidentally "capturing" a variable which was originally free.

A variable is captured if it is placed under a lambda (or other binding constructs if they exist) that binds the variable. It's called capture-avoiding substitution because the process avoids accidentally allowing free variables in the substitution to be captured inside the original expression.

The substitution of E’ for x in E (written [E’/x]E )

  • Step 1. Rename bound variables in E and E’ so they are unique
  • Step 2. Perform the textual substitution of E’ for x in E
    is called capture-avoiding substitution.

Example: [y (λx. x) / x] λy. (λx. x) y x

After renaming: [y (λv. v)/x] λz. (λu. u) z x
After substitution: λz. (λu. u) z (y (λv. v))

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!