Skip to main content
CalculoraCalculora
মুদ্রা রূপান্তরকারী
CalculoraCalculora

আপনার সর্বজনীন ক্যালকুলেটর প্ল্যাটফর্ম। প্রতিটি প্রয়োজনের জন্য বিনামূল্যে, দ্রুত এবং সঠিক সরঞ্জাম।

১০০% ব্যক্তিগত - সমস্ত গণনা আপনার ব্রাউজারে হয়, কোনো ডেটা সার্ভারে পাঠানো হয় নাচিরতরে বিনামূল্যে - কোনো পেওয়াল নেই, কোনো সাবস্ক্রিপশন নেই, কোনো অ্যাকাউন্ট দরকার নেই

জনপ্রিয়

  • BMI ক্যালকুলেটর
  • ঋণ ক্যালকুলেটর
  • বয়স ক্যালকুলেটর
  • বন্ধকী ক্যালকুলেটর
  • শতাংশ ক্যালকুলেটর
  • বৈজ্ঞানিক ক্যালকুলেটর

গণিত

  • পরিসংখ্যান ক্যালকুলেটর
  • সমীকরণ সমাধানকারী
  • ভগ্নাংশ ক্যালকুলেটর
  • মৌলিক উৎপাদক ক্যালকুলেটর
  • জিসিডি ও এলসিএম ক্যালকুলেটর
  • লগারিদম ক্যালকুলেটর

অর্থায়ন

  • ফায়ার ক্যালকুলেটর
  • ঋণ স্নোবল ক্যালকুলেটর
  • বিনিয়োগ ক্যালকুলেটর
  • অবসর ক্যালকুলেটর
  • বেতন ক্যালকুলেটর
  • ROI ক্যালকুলেটর

আইনি

  • সব দেখুন
  • বিভাগসমূহ
  • মুদ্রা রূপান্তরকারী
  • সাইটম্যাপ
  • গেমস ও মজার টুলস
  • আমাদের সম্পর্কে
  • যোগাযোগ করুন
  • গোপনীয়তা নীতি
  • সেবার শর্তাবলী

ভাষাসমূহ

  • 🇺🇸English
  • 🇸🇦العربية
  • 🇪🇸Español
  • 🇩🇪Deutsch
  • 🇫🇷Français
  • 🇮🇳हिन्दी
  • 🇮🇩Bahasa Indonesia
  • 🇮🇹Italiano
  • 🇯🇵日本語
  • 🇰🇷한국어
  • 🇧🇷Português
  • 🇷🇺Русский
  • 🇹🇷Türkçe
  • 🇻🇳Tiếng Việt
  • 🇧🇩বাংলা
  • 🇨🇳中文

© 2026 Calculora. সর্বস্বত্ব সংরক্ষিত।

তৈরি করা হয়েছে - ১০০% বিনামূল্যে

কোনো সার্ভার নেই - সম্পূর্ণ স্ট্যাটিক সাইট, শূন্য ডেটা সংগ্রহ

  1. হোম
  2. গণিত
  3. জিসিডি ও এলসিএম ক্যালকুলেটর

জিসিডি ও এলসিএম ক্যালকুলেটর

Calculate the Greatest Common Divisor (GCD) and Least Common Multiple (LCM) with complete Euclidean algorithm steps. Supports two or more numbers.

জিসিডি ও এলসিএম ক্যালকুলেটর কী?

The Greatest Common Divisor (GCD) and Least Common Multiple (LCM) are two of the most important concepts in elementary number theory, with applications from simplifying fractions in middle school to cryptographic algorithms that secure the internet.

The Euclidean algorithm, described by Euclid around 300 BC, is one of the oldest and most efficient algorithms in mathematics. It computes the GCD in O(log(min(a,b))) steps, terminating rapidly even for very large numbers. The algorithm applies the identity: GCD(a, b) = GCD(b, a mod b) repeatedly until the remainder is zero.

This calculator shows the complete Euclidean algorithm step by step for two numbers, and also computes GCD and LCM for lists of multiple numbers using the generalization: GCD(a, b, c) = GCD(GCD(a, b), c).

সূত্র

Euclidean Algorithm:
GCD(a, b) = GCD(b, a mod b) until b = 0
 
LCM from GCD:
LCM(a, b) = |a × b| / GCD(a, b)
 
For multiple numbers:
GCD(a, b, c) = GCD(GCD(a, b), c)
LCM(a, b, c) = LCM(LCM(a, b), c)

কীভাবে গণনা করবেন

  1. Enter two positive integers a and b.
  2. Apply integer division: a = q×b + r.
  3. Replace a with b and b with r. Repeat until r = 0.
  4. The last non-zero remainder is the GCD.
  5. Compute LCM = |a × b| / GCD using the fundamental identity.
  6. Use Multiple Numbers mode for three or more numbers.

উদাহরণ

Find GCD(48, 18): 48 = 2×18 + 12 → 18 = 1×12 + 6 → 12 = 2×6 + 0. GCD = 6. LCM = |48×18|/6 = 864/6 = 144. Check: 144/48 = 3 ✓, 144/18 = 8 ✓.

মূল শব্দ ব্যাখ্যা

GCD
Largest integer dividing both numbers without remainder
LCM
Smallest positive integer divisible by both numbers
Co-prime
Two numbers with GCD = 1, sharing no common prime factors
Euclidean algorithm
Ancient algorithm computing GCD by repeated division
Modulo operation
a mod b is the remainder when a is divided by b
Divisibility
a divides b if b/a has no remainder

সাধারণ ব্যবহারের ক্ষেত্র

  • Simplifying fractions: reduce a/b by dividing both by GCD(a, b)
  • Adding fractions with different denominators: find LCM of denominators
  • Scheduling: finding when two recurring events will next coincide
  • RSA key generation: checking that exponent e is co-prime with φ(n)
  • Gear ratio problems in mechanical engineering
  • Tile pattern design: finding the smallest repeating unit

সচরাচর জিজ্ঞাসিত প্রশ্ন

What is GCD and how is it calculated?
GCD (Greatest Common Divisor) is the largest positive integer that divides both a and b without remainder. The Euclidean algorithm computes it efficiently: repeatedly replace (a, b) with (b, a mod b) until b = 0. The last non-zero value is the GCD.
What is LCM and what is it used for?
LCM (Least Common Multiple) is the smallest positive integer divisible by both a and b. It is used for adding fractions with different denominators, scheduling problems, and music theory.
What is the relationship between GCD and LCM?
GCD(a, b) × LCM(a, b) = |a × b|. Once you know the GCD, the LCM is simply |a × b| / GCD(a, b). This is more efficient than listing multiples.
What does co-prime mean?
Two numbers are co-prime (relatively prime) if their GCD is 1 — they share no common prime factors. Co-primality is fundamental in modular arithmetic, cryptography, and the Chinese Remainder Theorem.

সম্পর্কিত সরঞ্জাম

এটা কি সহায়ক ছিল?
শতাংশ ক্যালকুলেটর
বৈজ্ঞানিক ক্যালকুলেটর
ভগ্নাংশ ক্যালকুলেটর
সূচক ক্যালকুলেটর
ম্যাট্রিক্স ক্যালকুলেটর
সমীকরণ সমাধানকারী
গসাগু ও লসাগু ক্যালকুলেটর – দ্রুত গণনা