Example: To perform the following calculations when Fix 3 is selected for
the number of display digits: 10 ÷ 3 × 3 and Rnd(10 ÷ 3) × 3 (LineIO)
(SETUP) (Fix)
10 3 3 10.000
(Rnd) 10 3 3 9.999
Greatest Common Divisor (GCD) and
Least Common Multiple (LCM)
Greatest Common Divisor (GCD)
GCD determines the greatest common divisor of two values.
Example: To determine the greatest common divisor of 28 and 35
(GCD) 28 (,) 35 7
Least Common Multiple (LCM)
LCM determines the least common multiple of two values.
Example: To determine the least common multiple of 9 and 15
(LCM) 9 (,) 15 45
33