I am attempting to perform Lambda calculations. I have the following information.
T = $\lambda xy.x$
F = $\lambda xy.y$
A = $\lambda xy.xyF$
I attempted to perform Beta reduction and alpha conversion on ATF.
$\lambda xy.xyF (TF) $
=$[(\lambda xy.xy)(\lambda ab.b)](\lambda cd.c)(\lambda eg.g) $
=$[(\lambda cd.c)(\lambda ab.b)](\lambda eg.g) $
=$[(\lambda eg.g)(\lambda ab.b) $
=$[\lambda ab.b $
=F
Is what I am doing here correct in terms of the conversions and ructions? Is there a way of checking the final result of this after all the applications?