문제

I have the following

(f.x.f(f x))(y.y+1) = x.(y.y+1)((y.y+1) x)
= x.(y.y+1)(x+1)
= x.x+1+1

I don't understand why is it ok the last transformation? Shouldn't it be x.(y.y+1)(x+1)= y+1? Why can he get rid of the y

도움이 되었습니까?

해결책

(y . y + 1) is applied to its argument (x + 1), so it's substituted for y to give ((x + 1) + 1).

I don't see how you come up with x . (y . y + 1)(x + 1)= y + 1. y only exists in the scope of the inner function.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top