- The conditions of problem 6 hold
- We note that, in the definition of compatibility,
A
andB
might be the same bird (compatible with itself), or thex
andy
inputs might be the same value - A bird that is compatible with itself is called "happy": that is, for happy bird
A
, there exist birdsx
andy
such thatA(x) === y
andA(y) === x
- Show that any bird that is fond of another must be happy
This one's simple. Recall that bird A
is fond of bird x
when A(x) === x
, and that, in the definition of compatibility, x
and y
may be the same bird. A(x) === x
automatically satisfies both A(x) === y
and A(y) === x
when x
and y
are the same. Thus, A
will be compatible with itself, and happy.