Difference between revisions of "Manuals/calci/PRODUCTOF"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''FTESTANALYSIS(ar1,ar2,alpha,newtableflag)'''</div><br/>")
 
Line 1: Line 1:
<div style="font-size:30px">'''FTESTANALYSIS(ar1,ar2,alpha,newtableflag)'''</div><br/>
+
<div style="font-size:30px">'''PRODUCTOF(TillNumber,StartNumber,By)'''</div><br/>
 +
*<math>TillNumber</math> is the final number.
 +
*<math>StartNumber</math> is the starting number.
 +
*<math>By</math> is the skip number.
 +
 
 +
==Description==
 +
*This function is showing product of the given set of numbers.
 +
*In <math>PRODUCTOF(TillNumber, StartNumber,SomeBy)</math>, <math>TillNumber</math> is the final number in the product.
 +
*<math>StartNumber</math> is the starting number in the product.
 +
*<math>By</math> is the skip value in the product.
 +
*A Product  is a number or a quantity obtained by multiplying two or more numbers together.
 +
*Here PRODUCTOF(10,4,2) = 1920.
 +
*In this example it is doing the multiplication of 4*6*8*10=1920.
 +
*Suppose the third parameter is not given,then the skip value is assigned as 1.
 +
*So it is doing the multiplication of 4*5*6*7*8*9*10=604800.
 +
 
 +
==Examples==
 +
#PRODUCTOF(7,4) = 840
 +
#PRODUCTOF(7,4,2) = 24
 +
#PRODUCTOF(12.3,5,3) = 440
 +
#PRODUCTOF(23.2,8.5,4) = 35939.0625
 +
 
 +
==See Also==
 +
 
 +
*[[Manuals/calci/DOTPRODUCT | DOTPRODUCT]]
 +
*[[Manuals/calci/CARTESIANPRODUCT  | CARTESIANPRODUCT ]]
 +
*[[Manuals/calci/PRODUCT | PRODUCT]]
 +
 
 +
==References==
 +
*[http://en.wikipedia.org/wiki/Product_(mathematics) PRODUCT]
 +
 
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]

Revision as of 14:29, 24 May 2017

PRODUCTOF(TillNumber,StartNumber,By)


  • is the final number.
  • is the starting number.
  • is the skip number.

Description

  • This function is showing product of the given set of numbers.
  • In , is the final number in the product.
  • is the starting number in the product.
  • is the skip value in the product.
  • A Product is a number or a quantity obtained by multiplying two or more numbers together.
  • Here PRODUCTOF(10,4,2) = 1920.
  • In this example it is doing the multiplication of 4*6*8*10=1920.
  • Suppose the third parameter is not given,then the skip value is assigned as 1.
  • So it is doing the multiplication of 4*5*6*7*8*9*10=604800.

Examples

  1. PRODUCTOF(7,4) = 840
  2. PRODUCTOF(7,4,2) = 24
  3. PRODUCTOF(12.3,5,3) = 440
  4. PRODUCTOF(23.2,8.5,4) = 35939.0625

See Also

References