I realize this is probably a simple question for most people, but it is something that I am just having a hard time understanding. The numbers 1 and 2 is defined as:
$1 = \lambda f. \lambda x. \space \space f \space x$
$2 = \lambda f. \lambda x. \space \space f ( \space f \space x \space)$
And, as I understand it (which could be wrong), the identity for one looks like:
$1 \space f \space x$
But wouldn't this be the same as saying
$1(f(x))$
Which would expand out to
$f(f(x))$
Which to me looks like the definition for 2, but I thought this was supposed to be the identity function. My main source here is Wikipedia (possibly not the best source... lol).