Divides the first number by the product of the remaining numbers and returns the quotient
Supported Platforms: Windows and Mac OS
(/ [number number ...])
Type: Integer or Real
A numeric value.
Type: Integer or Real
The result of the division. If you supply more than two number arguments, this function divides the first number by the product of the second through the last numbers, and returns the final quotient. If you supply one number argument, this function returns the result of dividing it by one; it returns the number. Supplying no arguments returns 0.
(/ 100 2) 50 (/ 100 2.0) 50.0 (/ 100 20.0 2) 2.5 (/ 100 20 2) 2 (/ 4) 4