From SOA sample #238:
In a large population of patients, $.20$ have early stage cancer, $.10$ have advanced stage cancer, and the other $.70$ do not have cancer. Six patients from this population are randomly selected. Calculate the expected number of selected patients with advanced stage cancer, given that at least one of the selected patients has early stage cancer.
What is wrong with my solution?
$${1\cdot{5\choose 1}\cdot.1^1\cdot.9^4+2\cdot{5\choose 2}\cdot.1^2\cdot.9^3+3\cdot{5\choose 3}\cdot.1^3\cdot.9^2+4\cdot{5\choose 4}\cdot.1^4\cdot.9^1+5\cdot{5\choose 5}\cdot.1^5\cdot.9^0}\over{1-.8^6}$$
where the numerator is assuming there are only $5$ spots for a patient to have advanced stage cancer, since at least once has early stage cancer, and the denominator is the probability that at least one has early stage cancer.
EDIT: It has been made clear to me from David Diaz's answer that at least part of my mistake was trying to apply methods that can only be used in the hyper-geometric distribution to the binomial distribution.
That is, I was trying to say, let there be one person with early stage cancer and consider him independently, and consider the other five independently where they can be either early, advanced, or no cancer. That would work if the question was hyper-geometric, for example, if the question was "If there are $N$ patients $.20$ have early stage cancer, $.10$ have advanced stage cancer, and the other $.70$ do not have cancer. Six patients from this population are randomly selected etc...". Then I would be able to do the following
$${1\cdot {.2N \choose 1}{{.1N}\choose 1 }{{.2N-1+.7N}\choose 4 } + 2\cdot {.2N \choose 1}{{.1N}\choose 2 }{{.2N-1+.7N}\choose 3 }+ 3\cdot {.2N \choose 1}{{.1N}\choose 3 }{{.2N-1+.7N}\choose 2 }+ 4\cdot {.2N \choose 1}{{.1N}\choose 4 }{{.2N-1+.7N}\choose 1 }+ 5\cdot {.2N \choose 1}{{.1N}\choose 5 }{{.2N-1+.7N}\choose 0 }\over {.2N \choose 1}{{.2N-1+.8N}\choose 5}}$$
However, the binomial distribution is fundamentally different, and every trial that selects an early stage patient must be accounted for.