Difference between revisions of "Manuals/calci/MULTIPLYBY"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''MULTIPLYBY(By,OtherArguments)'''</div><br/> *where <math>By</math> *<math>OtherArguments</math> ==Description== *This function calculates the...")
 
Line 1: Line 1:
 
<div style="font-size:30px">'''MULTIPLYBY(By,OtherArguments)'''</div><br/>
 
<div style="font-size:30px">'''MULTIPLYBY(By,OtherArguments)'''</div><br/>
  
*where <math>By</math>  
+
where
*<math>OtherArguments</math>
+
*<math>By</math> is the number to be multiplied by
 +
*<math>OtherArguments</math> is the number of array of numbers with which multiplication is to be carried out.
  
 
==Description==
 
==Description==
*This function calculates the multiplication of <math>By</math> number with each given number in the array.
+
*This function calculates the multiplication of <math>By</math> number with each given number from the <math>OtherArguments</math> array.
 
*Multiplication is one of the four basic operations of arithmetic.  
 
*Multiplication is one of the four basic operations of arithmetic.  
 
*Multiplication is adding equal parts or groups.
 
*Multiplication is adding equal parts or groups.
Line 12: Line 13:
  
 
==Examples==
 
==Examples==
#MULTIPLYBY(44,3) = 132
+
#MULTIPLYBY(3,2.5) = 7.5
 
#MULTIPLYBY(-7,20) = -140
 
#MULTIPLYBY(-7,20) = -140
#MULTIPLYBY(8.5,3) = 25.5
+
#MULTIPLYBY(2,[5,3,9]) =  
#MULTIPLYBY(2,6,8) = 96
+
#MULTIPLYBY(4,[1..4]) =  
#MULTIPLYBY(1..4,3) = 72
 
 
# A= 5 ; MULTIPLYBY(A,6) = 30
 
# A= 5 ; MULTIPLYBY(A,6) = 30
  

Revision as of 05:08, 10 April 2017

MULTIPLYBY(By,OtherArguments)


where

  • is the number to be multiplied by
  • is the number of array of numbers with which multiplication is to be carried out.

Description

  • This function calculates the multiplication of number with each given number from the array.
  • Multiplication is one of the four basic operations of arithmetic.
  • Multiplication is adding equal parts or groups.
  • Multiplication is the repeated addition and it is the opposite of Division.


Examples

  1. MULTIPLYBY(3,2.5) = 7.5
  2. MULTIPLYBY(-7,20) = -140
  3. MULTIPLYBY(2,[5,3,9]) =
  4. MULTIPLYBY(4,[1..4]) =
  5. A= 5 ; MULTIPLYBY(A,6) = 30

See Also

References

Multiplication