الرياضيات
حاسبة م.م.م و م.ق.م
ابحث عن المضاعف المشترك الأصغر والقاسم المشترك الأكبر
كيفية الاستخدام
- Type a list of integers separated by commas or spaces into the box above.
- Results update instantly — no button press needed.
- The المضاعف المشترك الأصغر is the smallest number divisible by all your inputs.
- The القاسم المشترك الأكبر (also called HCF) is the largest number that divides all your inputs evenly.
الصيغة
GCD(a, b)
Euclidean algorithm: divide repeatedly until remainder = 0 LCM(a, b)
= |a × b| / GCD(a, b) LCM(a,b,c)
= LCM(LCM(a,b), c) — applied iteratively