Difference between revisions of "Manuals/calci/MULTINOMIAL"

From ZCubes Wiki
Jump to navigation Jump to search
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''MULTINOMIAL(x1,x2,..)'''</div><br/>
+
<div style="font-size:30px">'''MULTINOMIAL()'''</div><br/>
*<math>x_1,x_2,..., </math> are numbers
+
*Parameters  are any set of numbers.
 +
**MULTINOMIAL(),returns the multinomial of a set of numbers.
  
 
==Description==
 
==Description==
Line 6: Line 7:
 
*Multinomial means the ratio of the factorial of a sum of values to the product of factorials.  
 
*Multinomial means the ratio of the factorial of a sum of values to the product of factorials.  
 
*Multinomial of n set of numbers is defined by:
 
*Multinomial of n set of numbers is defined by:
<math> MULTINOMIAL(x_1,x_2,..x_n)=\frac{(x_1+x_2++x_n)!}{x_1!x_2!..x_n!}</math>
+
<math> MULTINOMIAL(x_1,x_2,..x_n)</math>=<math>\frac{(x_1+x_2+...+x_n)!}{x_1!x_2!..x_n!}</math>
 
This function gives the result as error when  
 
This function gives the result as error when  
 
  1.Any one of the  argument is non-numeric.
 
  1.Any one of the  argument is non-numeric.
 
  2.Any one of the argument is < 0.
 
  2.Any one of the argument is < 0.
*In <math>MULTINOMIAL(x_1,x_2...)</math>, <math>x_1</math> is required. <math>x_2,x_3...</math> are optional.
+
*In <math>MULTINOMIAL()</math>, First Parameter is required. From the second parameter are optional.
  
==ZOS Section==
+
==ZOS==
*The syntax is to calculate multinomial in ZOS is <math>MULTINOMIAL(x1,x2,...)</math>.
+
*The syntax is to calculate multinomial in ZOS is <math>MULTINOMIAL()</math>.
**<math>x_1,x_2,..., </math> are numbers
+
**Parameters  are any set of numbers.
  
 
==Examples==
 
==Examples==
Line 20: Line 21:
 
#=MULTINOMIAL(2,3,4,5) = 2522520
 
#=MULTINOMIAL(2,3,4,5) = 2522520
 
#=MULTINOMIAL(0,1.2,1.3,1.4,1.5) = 24
 
#=MULTINOMIAL(0,1.2,1.3,1.4,1.5) = 24
#=MULTINOMIAL(0,-1,2) = NAN
+
#=MULTINOMIAL(0,-1,2) = #N/A (NUMBER < 0)
 +
 
 +
==Related Videos==
 +
 
 +
{{#ev:youtube|fGoEwyvTIkc|280|center|MULTINOMIAL}}
  
 
==See Also==
 
==See Also==
Line 27: Line 32:
 
==References==
 
==References==
 
[http://en.wikipedia.org/wiki/Multinomial_distribution Multinomial_distribution]
 
[http://en.wikipedia.org/wiki/Multinomial_distribution Multinomial_distribution]
 +
 +
 +
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 09:34, 9 June 2020

MULTINOMIAL()


  • Parameters are any set of numbers.
    • MULTINOMIAL(),returns the multinomial of a set of numbers.

Description

  • This function gives the Multinomial of the values.
  • Multinomial means the ratio of the factorial of a sum of values to the product of factorials.
  • Multinomial of n set of numbers is defined by:

= This function gives the result as error when

1.Any one of the  argument is non-numeric.
2.Any one of the argument is < 0.
  • In , First Parameter is required. From the second parameter are optional.

ZOS

  • The syntax is to calculate multinomial in ZOS is .
    • Parameters are any set of numbers.

Examples

  1. =MULTINOMIAL(10,11) = 352716
  2. =MULTINOMIAL(2,3,4,5) = 2522520
  3. =MULTINOMIAL(0,1.2,1.3,1.4,1.5) = 24
  4. =MULTINOMIAL(0,-1,2) = #N/A (NUMBER < 0)

Related Videos

MULTINOMIAL

See Also

References

Multinomial_distribution