From 0a61fcfb3ea1e37a23aad55d330795b42dc4ca8a Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Wed, 8 Jan 2025 07:41:59 -0600 Subject: [PATCH] Clarify mathematical definition of lcm --- base/intfuncs.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base/intfuncs.jl b/base/intfuncs.jl index 13a5007e4c74b..dc81f2bd3e489 100644 --- a/base/intfuncs.jl +++ b/base/intfuncs.jl @@ -97,6 +97,9 @@ end Least common (positive) multiple (or zero if any argument is zero). The arguments may be integer and rational numbers. +``a`` is a multiple of ``b`` if there exists an integer ``m`` such +that ``a=mb``. + !!! compat "Julia 1.4" Rational arguments require Julia 1.4 or later.