Zvolte jazyk: english | cesky | deutsch | italiano | simplified chinese | traditional chinese | hindi
Koncept:
Anglické slovo:
Hlavní stránka

least common multiple fn (LeastCommonMultipleFn)

(LeastCommonMultipleFn number1 number2 ... number) returns the least common multiple of number1 through number.

Ontologie

SUMO / NUMERIC-FUNCTIONS

Class(es)

třída
is instance of
  inheritable relation  
is instance of
  funkce  
is instance of
relace s proměnným počtem argumentů
is instance of

is instance of
  least common multiple fn  

Související termín(y)

assignment fn  greatest common divisor fn  list fn  contrary attribute  disjoint decomposition  disjoint relation  exhaustive attribute  exhaustive decomposition  holds  partition 

Axiomy (2)

(=>
      (equal
            (LeastCommonMultipleFn @ROW)
            ?NUMBER)
      (forall
            (?ELEMENT)
            (=>
                  (inList
                        ?ELEMENT
                        (ListFn @ROW))
                  (equal
                        (RemainderFn ?NUMBER ?ELEMENT)
                        0))))

(=>
      (equal
            (LeastCommonMultipleFn @ROW)
            ?NUMBER)
      (not
            (exists
                  (?LESS)
                  (and
                        (lessThan ?LESS ?NUMBER)
                        (forall
                              (?ELEMENT)
                              (=>
                                    (inList
                                          ?ELEMENT
                                          (ListFn @ROW))
                                    (equal
                                          (RemainderFn ?LESS ?ELEMENT)
                                          0)))))))