日本語 English
株式会社ヒューリンクス
TEL:03-5642-8384
営業時間:9:00-17:30

choose

関数 choose は、順序に関係なくn 個の対象から r 個を選択する組み合わせを計算します。

構文

choose(n, r)

引数 n, r に対しては、r <n でなくてはなりません。n 個から r 個を選択する組み合わせは次式で定義されます:

  • 二項分布確率関数を作成するには、次式を入力します:

    binomial(p,n,r) = choose(n,r) * (p^r) * (1-p) ^ (n-r)

choose
説明
The choose function determines the number of ways of choosing r objects from n distinct
objects without regard to order.
順序に関係なくn 個の対象から r 個を選択する組み合わせを計算します。

構文
choose(n,r)
choose(n,r)

For the arguments n and r, r < n and “n choose r” is defined as:
n,r に対しては、r<n でなくてはなりません。n個からr個を選択する組み合わせは次の式で計算されます。

[式]

To create a function for the binomial distribution, enter the equation:
二項分布確率関数を作成するには、次の式を入力します。
binomial(p,n,r) = choose(n,r) * (p^r) * (1-p) ^ (n-r)