A formal system used to study functions, variables & how they interact through application & abstraction. It's a foundational mathematical framework that models computation in its purest form.
Key concepts:
Variables represents data or values
Functions: Defined using abstraction
\x.t , is function that takes x and returns t.
Application: Applying a function to an argument.
Sytax:
t:: = v | t t | \x.t
t: represents a term in lamda calculus. A term is any valid lambda expression.
v: Represents a varibale, variables are the basic building blocks & are typically symbols like x, y, z
t t: Represents function application, where one term is applied to another. For example (f x) means applying the function t to the argument x.
\x.t: Represents a lambda abstraction or function definition. It defines a function that takes a variable x as input & returns the term t as output.
(\x.x) 3 -> applying identical function \x.x to 3
Breaking down the syntax:
Variables (V):
Represents atomic terms which cannot be broken down further.
Example x, y, z
Functions (\x.x):
Is a function that takes x as an input and returns x as output.
Applications (\x. x) 3: applying one term to another.
Applying the function \x. x to 3
result is 3
Nested functions: \x. \y. x
A function that takes x and return another function that takes y and always return x.
Why this syntax is important?
This simple grammer is Turing complete. With just variables, application & abstractions you can represent:
Functions: Mapping inputs to outputs.
Logic: True, False, conditions.
Data Structures: Numbers, lists & more.
Recursion: Using self-referencing functions.
Lambda calculus is Turing complete, meaning it can compute anything that any computer program can compute. Using just:
What is Alpha-renaming in lamda calculus? Why is it important?
Alpha renaming refers to the process of changing the names of bound variables in lambda expression without altering its meaning or functionality. This is essential to:
Avoid conflicts during substitution.
Distinguish between free & bound variables explicitly.
Maintain clarity when working with nested bindings or complex expressions.
Well, how do you distinguish between bound and free variables in lambda expression?
Bound variables are those declared in lambda abstraction and used within it's scope. For example x in \x. x is bound
Free variables are not bound within the lambda abstraction where they appear. For instance: \y. x , x is free variable.
What is the difference between free and bound variables?
Free: Not declared within the lambda expression, e.g., x in \y.x.
Bound: Declared within the lambda expression, e.g., y in \y.x.
Application of Alpha-renaming:
Can you explain with examples how to rename bound variables without changing the meaning of an expression?
Example 1 : Simple renaming:
\x. x is equivalent to \y. y
Rename x to y because x is bound, y does not conflict with any free variables.
Example 2: Nested Bindings:
\x. \y. x y
here x and y both are binded.
x -> a , y -> b
\a. \b . a b
What is Variable Capture?
Variable capture occurs when a free variable in an expression becomes bound during substitution, altering the meaning of the expression.
Example of risk of variable capture:
\x. \y . x y
x is bound by the outer \x
y is bound by inner \y
but if we zoom in on: \y . x. y
here x is a free variable and y is bound variable.
Substituting y for x:
1. x abstraction is no longer relevant it has been consumed by substitution.
2. We don't keep an unused\x in the final expression
\x.\y.xy
But after substitution of y for x, the full expression simplifies to just the inner lambda:
\y.y y
This happens because the outer parameter x has been completely replaced, so the result is now just the inner function. There's no longer a need for the outer lambda.
After substitution, the full expression simplifies to:
\y.y y
Here, the substitution causes variable capture because:
The original expression, x in x y was free (not bound to any lambda).
After substitution, y in y y is bound by the \y.
How does alpha-renaming avoid this?
Each bound variablemust be unique within its scope
\y . \y. y y , the 2nd \y shadows the 1st \y, which is completely overridden and no longer be accessed, this causes confusion and violates scoping rules.
Substitution respects scope:
When substitution a variable ( y for x), substitution only replaces free occurrences of x within its scope.
Here in our case these are bound variables.
We can rename our y for z;
\x . \z. x. y
Then we can substitute x for y:
\y. \z. y. z
Alpha-renaming avoids these conflicts:
Few more practice questions:
How do i partition lamda expression into groups based on alpha renaming equivalence?
Group expressions that are identical except for the names of their bound variables. Example: Expressions:
Alpha equivalent and belong to the same group.:
\x . x
\y. y
\z. z
Not equivalent so these are different group:
\x. y
\y. z
If it is alpha equivalent then it's the same group!
Alpha-equivalence: Two expressions are equivalent if one can be transformed into the other by renaming bound variables.
Same group: Expressions that are alpha-equivalent are grouped together.
Common mistakes in alpha-renaming problems:
Renaming free variables
Failing to check for conflicts with existing variables.
Misunderstanding nested scoping.
Example Practice Problems
Partition the following lambda expressions into groups such that within each group, any expression can be converted to another through alpha-renaming.
Expressions:
\x.x
\y.y
\z.z
\x.y
\y.x
\x.\y.x y
\a.\b.a b
\z.\w.z w
Group 1:
\x. x
\y. y
\z. z
Group 2:
\x . \y . x. y
\z. \w . z w
\a. \b. a. b
Group3 :
\x. y
Group 4:
\y. x
Validation of Groups
Group 1: { \x.x, \y.y, \z.z }
These expressions are alpha-equivalent because they all represent the identity function (return the input directly) with bound variables.
Group 2: { \x.\y.x y, \z.\w.z w, \a.\b.a b }
These expressions are alpha-equivalent because they share the same structure of applying the first bound variable to the second.
The bound variable names differ, but the function's logic remains the same.
Group 3: { \x.y }
This expression is unique as it introduces a free variable y. It cannot be alpha-renamed to match any other expressions.
Group 4: { \y.x }
Similar to Group 3, this expression introduces a free variable x and cannot be alpha-renamed to match any other expressions.
More practice question:
Expressions:
\x.x x
\y.y y
\z.z z
\x.\y.x y
\a.\b.a b
\z.\w.z w
\x.y
\y.x
\x.\z.z x
\a.\y.y a
Group 1:
\x . x x
\y . y y
\z. z z
Group 2:
\x . \y. x y
\a . \b. a b
\z. \w. z w
Group 3:
\x. y
Group 4:
\y. x
Group 5:
\x.\z.z x
\a.\y.y a
Group 1: { \x.x x, \y.y y, \z.z z }
These expressions are alpha-equivalent.
Reason: They share the same structure, where the bound variable is applied to itself.
Group 2: { \x.\y.x y, \a.\b.a b, \z.\w.z w }
These are alpha-equivalent.
Reason: They all represent two nested abstractions where the first variable is applied to the second.
Group 3: { \x.y }
This is a unique group.
Reason: It contains a free variable y, so it is not alpha-equivalent to any other expression.
Group 4: { \y.x }
This is another unique group.
Reason: It introduces a free variable x, making it distinct from other expressions.
Group 5: { \x.\z.z x, \a.\y.y a }
These are alpha-equivalent.
Reason: Both represent nested abstractions where the second variable is applied to the first in reverse order compared to Group 2.
Exam Tips for Similar Problems
Check Bound Variables: Identify which variables are bound and rename systematically to test equivalence.
/abcd -> a,b,c,d are bound variables
\a.\b.\c.\d. a b (c d): All variables (a, b, c, d) are still bound.
Highlight Free Variables: Free variables cannot be renamed, which can isolate expressions into separate groups.
\x.\y.x z, z is free variables
(\x.x) y, y is free
\x.(x y z), y and z are free
Focus on Structure: Ignore specific variable names and compare the overall function structure and application order.
Alpha-equivalence depends only on the order of application and the function logic:
Example: \x.\y.x y is structurally equivalent to \a.\b.a b or \z.\w.z w.
Example: \x.x y is not equivalent to \y.y x because the application order differs.
Final exam: Practice question:
first step: categorize based on the outer variable
e1 = w (\xy. y w y )
e6 = w (\yz. y w y)
e2 = z ( \xy . y z y)
e3 = z ( \xz . w z w)
e4 = z ( \wy .w z w)
e5 = z ( \yz. y z y)
2nd step:
If we see free variable, it goes into it's own group
If we see bound variables, let's rename them and see if we can get alpha-equivalent.
let's work on these first:
e1 = w (\xy. y w y )
e6 = w (\yz. y w y)
Group 1:
e1 = w (\xy. y w y )
if we rename \x to y, -> w (\yy, y w y)?
so it can be categroized in the same bucket as w (\yz. y w y) ??
z ( \xy . y z y)
Group 2:
e6 = w (\yz. y w y)
Why two separate group?
if we rename x -> y, w (\xy. y w y ). here it won't be similar to w (\yz. y w y)
now let's focus on :
e2 = z ( \xy . y z y)
if we rename z to w -> w ( \xy . y w y)
thus goes to group 1
e3 = z ( \xz . w z w)
if we rename z to w -> w ( \xz . w w w)
here we renamed a free variable so it is on it's own
A formal system used to study functions, variables & how they interact through application & abstraction. It's a foundational mathematical framework that models computation in its purest form.
Key concepts:
Sytax:
Breaking down the syntax:
Why this syntax is important?
This simple grammer is Turing complete. With just variables, application & abstractions you can represent:
What is Alpha-renaming in lamda calculus? Why is it important?
Alpha renaming refers to the process of changing the names of bound variables in lambda expression without altering its meaning or functionality. This is essential to:
Well, how do you distinguish between bound and free variables in lambda expression?
What is the difference between free and bound variables?
Application of Alpha-renaming:
Can you explain with examples how to rename bound variables without changing the meaning of an expression?
What is Variable Capture?
Variable capture occurs when a free variable in an expression becomes bound during substitution, altering the meaning of the expression.
Example of risk of variable capture:
1. x abstraction is no longer relevant it has been consumed by substitution.
2. We don't keep an unused \x in the final expression
This happens because the outer parameter x has been completely replaced, so the result is now just the inner function. There's no longer a need for the outer lambda.
Here, the substitution causes variable capture because:
How does alpha-renaming avoid this?
Few more practice questions:
How do i partition lamda expression into groups based on alpha renaming equivalence?
Alpha-equivalence: Two expressions are equivalent if one can be transformed into the other by renaming bound variables.
Same group: Expressions that are alpha-equivalent are grouped together.
Common mistakes in alpha-renaming problems:
Example Practice Problems
Partition the following lambda expressions into groups such that within each group, any expression can be converted to another through alpha-renaming.
Expressions:
Group 1:
Group 2:
Group3 :
Group 4:
More practice question:
Expressions:
Group 1:
Group 2:
Group 3:
Group 4:
Group 5:
Group 1: { \x.x x, \y.y y, \z.z z }
Group 2: { \x.\y.x y, \a.\b.a b, \z.\w.z w }
Group 3: { \x.y }
Group 4: { \y.x }
Group 5: { \x.\z.z x, \a.\y.y a }
Final exam: Practice question:
first step: categorize based on the outer variable
2nd step:
let's work on these first:
Group 1:
Group 2:
Why two separate group?
now let's focus on :