Filter löschen
Filter löschen

statistics, discrete math, combinations question

1 Ansicht (letzte 30 Tage)
Sean Smith
Sean Smith am 18 Sep. 2011
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.

Antworten (1)

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

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by