Function in Lambda Functions

f = λx. x

λx.x is the function itself, while f(x) is what happens when you use it.

λx.x the function
f = λx.x giving the function a name
f(x) applying the function to x
(λx.x)(x) same thing as f(x)