How can I determine the expected sum of randomly chosen numbers from vector? (combinatorics)

1 回表示 (過去 30 日間)
T FW
T FW 2020 年 4 月 23 日
回答済み: Joost 2020 年 4 月 26 日
Hello there,
I would like to solve the following problem with Matlab.
If you choose two numbers out of this vector [-1 -1 -1 1], what is their sum, on average?
With nchoosek(4,2) I can determine that there are 6 combinations, but how can I iterate through these combinations to determine each of the 6 sums?
Thanks,
Tobias

採用された回答

Joost
Joost 2020 年 4 月 26 日
The nchoosek function can give you all combinations of 2 elements from the vector.
Instead of nchoosek(4, 2), use nchoosek([-1 -1, -1, 1], 2)
I am not sure how it deals with replicas.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeElementary Math についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by