Error Messages/40811

< Error Messages
Revision as of 17:13, 9 January 2013 by Lchrisman (talk | contribs) (Created page with "= Warning Message = :The first parameter, «k», of Function Combinations(k,n) cannot be larger than the second parameter, «n». = Cause = You have probably inverted the ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Warning Message

The first parameter, «k», of Function Combinations(k,n) cannot be larger than the second parameter, «n».

Cause

You have probably inverted the order of the parameters to Combinations. How many sets of size 3 are there among a collection of 5 elements? That would be Combinations(3,5). Mathematical notation for combination often appear as

[math]\displaystyle{ \left( \begin{array}{c} n \\ k \end{array} \right) }[/math] or [math]\displaystyle{ _nC_r }[/math]

which becomes Combinations(k,n) in Analytica.

See Also

Comments


You are not allowed to post comments.