Is the following the correct way to "map" how a lambda function looks to how it would be written in scheme?
(λx.x+1) 5 ↦ (lambda (x) (+ x 1) 5)
Additionally, how are lambda functions 'named' in the formal notation? Is there something that corresponds to this:
Add One = (λx.x+1)