I have the following Infinite Tree that when fully spelled out,
contains one row for each natural number. The zeroth row contains one node, the first row
contains two nodes, the second row contains four nodes, and, in general, the nth row contains 2^n
nodes.
The point of the problem is to determine if the nodes of the tree have a one-to-one correspondence between the natural numbers, as well as if the branches of the infinite binary tree have a one-to-one correspondence between the natural numbers.
My intuition tells me that the nodes will have a one-to-one correspondence and the branches will not. Because there are a defined number of nodes per row of the tree, each row is represented by a natural number, and no two rows are the same, then there will be a one-to-one correspondence. However, I am not sure about the branches.
Any help is appreciated.