In how many ways can you form 3 teams from 30 people where each team consists of 1 team leader and 9 other members?
Attempted solution
I need to pick 3 team leaders and the order is unimportant and there are no repetitions:
$C_{30}^3$=4060
For the first team I have 27 people to choose from and I need to pick 9. Order is not important and there are no repetitions:
$C_{27}^9$=4686825
For the second team I have 18 people left and I need to pick another 9:
$C_{18}^9$=48620
For the third team I have 9 people left:
$C_{9}^9$=1
To get the solution, I just multiply all results:
$4060*4686825*48620*1=925166131890000$
Is it correct?