statistics, discrete math, combinations question

1 次查看(过去 30 天)
I am just learning the nchoosek and factorial functions and had a question about 2 problems. The first is: how many different football teams of 11 players can you form from a class of 30 people? (combinations, order does not matter). For this I am guessing nchoosek(30,11) would find that. The second question is: since each player on the team is assigned a role, order does matter. Recalculate the number when order is taken into account. For this I am not sure what to do. I am guessing one of the questions uses factorial(30) or something but I am not sure and kind of lost. Thank You.

回答(1 个)

Andrei Bobrov
Andrei Bobrov 2011-9-18
you want it?
n = 30;
k = 11;
out = prod(n-k+1:n)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by