The question is as follows: "A class of 10 students is electing a president and two vice presidents for student council. If each student in the class is eligible for either office and no student may hold multiple offices, how many different ways can the president and two vice presidents be selected?"
My approach this this problem was the following: 10 people can be president 9 people can be VP 1 8 people can be VP 2
Therefore, 1098 = 720 combinations.
The correct approach is: 10C1 people can be president 9C2 people can be VP
Therefore, 360 combinations exist.
My approach makes a lot more sense logically for me - can you help me understand what is incorrect about my approach and why the correct approach treats the 2 VP slots as 9C2 instead of: VP 1 = 9C1 VP 2 = 8C1