$11$ students are to be chosen from $2$ classes of $20$ students each. At least $5$ need to be chosen from each. Would you please tell me what is wrong with this approach?
First we select $5$ students from each class. The number of ways of doing so $= C(20,5) \times C(20,5)$. Now, $30$ students are left and $1$ needs to be chosen from them $= C(30,1)$. Therefore total number of ways = $(C(20,5))^2 \times C(30, 1)$
The answer is $2(20C5 \times 20C6)$ using cases approach (correct answer). Although the solution for the same is all over the Internet, I don't think there is justification for why my approach is wrong other than simply the fact that my answer is wrong.
You over counted some cases. Call the students $A_{1},\cdots,A_{20},B_{1},\cdots,B_{20}$. Then using your process, there are more than one way to pick $A_{1},\cdots,A_{6},B_{1},\cdots,B_{5}$: one way is to pick $A_{1},\cdots,A_{5},B_{1},\cdots,B_{5}$ in the first step, and pick $A_{6}$ in the second step. Another way is to pick $A_{2},\cdots,A_{6},B_{1},\cdots,B_{5}$ first and then pick $A_{1}$.