最小公倍数計算機

Calculate Least Common Multiple (LCM) of multiple numbers with step-by-step solutions and prime factorization.

学習と宿題のサポートとして、重要な計算を独立して検証します。

レビュー者 CalculatorDrive Math編集委員会 · 最終更新日

電卓

2 つ以上の正の整数 (1 ~ 10,000,000,000) を入力します。

2 つ以上の正の整数を入力して、LCM (最小公倍数) を計算します。

短い答え

The LCM is the smallest number that every number in your set divides into evenly. For 4 and 6, list multiples of each until one matches: 4, 8, 12... and 6, 12... — 12 is the first shared value, so LCM(4, 6) = 12. For larger numbers, prime factorization is faster: take the highest power of every prime that appears in any of the numbers.

重要なポイント

  • The listing method works well for small numbers but gets slow fast; prime factorization scales to numbers of any size.
  • 正確に 2 つの数値の場合、LCM(a, b) = (a × b) ÷ GCF(a, b) — GCF をすでに理解している場合は、これが近道です。
  • Real-life LCM problems are almost always "when do repeating things line up again" — bus schedules, blinking lights, overlapping cycles.
  • LCM を 3 つ以上の数値に拡張するということは、LCM(a, b, c) = LCM(LCM(a, b), c) のように、一度に 2 つを結合することを意味します。

Two methods for finding LCM

Method 仕組み Best for
複数のリストを表示するすべてのリストで 1 つが繰り返されるまで、各数値の倍数をリストします。小さな数字、直感を構築する
素因数分解任意の数に現れるすべての素数の最高累乗を求めますLarger numbers, several at once

実用的な例: 一度に 3 つの数字

4 = 2²、6 = 2 × 3、8 = 2³

現在の 2 の最大累乗: 2³ (8 から)

現在の 3 の最高累乗: 3¹ (6 から)

LCM = 23 × 3 = 24

素因数分解は、任意の数の入力にきれいにスケールします。セット全体にわたるすべての素数の最高累乗が 1 つのパスに含まれるため、この方法を使用する場合、一度に 2 つの数値を結合する必要はありません。

LCM in real life: repeating schedules

Bus A arrives every 8 minutes and Bus B arrives every 12 minutes. Both just arrived together at 8:00 AM — when will that happen again? The answer is LCM(8, 12) = 24 minutes later, at 8:24 AM. This pattern — figuring out when repeating cycles realign — covers everything from traffic light timing to overlapping work shifts to when two planets' orbital periods bring them back to the same relative position.

避けるべきよくある間違い

  • 問題に実際に LCM が必要な場合に GCF に到達する、またはその逆 - GCF は均等なグループに分割されます。 LCM は、繰り返しイベントが再調整されるタイミングを検出します。
  • Forgetting the LCM must be a multiple of every number in the set, not just the largest one, when double-checking an answer.
  • 2 つの数値のショートカット LCM = (a × b) ÷ GCF を 3 つ以上の数値に直接適用すると、正確に 2 つの数値にのみ当てはまります。
  • 値がすべての数値の複数リストに実際に表示される前に、リスト方法を停止するのが早すぎます。

よくある質問

最小公倍数 (LCM) とは何ですか?

LCM は、セット内の各数値で割り切れる最小の正の整数です。 4 と 6 の最小公倍数は 12 です。

LCM は分数でどのように使用されますか?

分母の最小公倍数は、分数を加算または比較するときに便利な共通分母を提供します。

LCM は GCF とどのように関係しますか?

2 つの正の整数 a および b の場合、LCM(a, b) × GCF(a, b) = a × b。一方を知っていれば、もう一方をすぐに見つけることができます。

文章問題で LCM が必要になるのはどのような場合ですか?

Problems about events repeating on different schedules — like two buses arriving every 8 and 12 minutes — use LCM to find when they align again.

この最小公倍数計算ツールはどのように使用すればよいですか?

2 つ以上の整数を入力し、「計算」をクリックします。このツールは LCM を返し、役立つ場合には素因数分解のステップを表示します。

3 つ以上の数値の最小公倍数はどのようにして求めますか?

Combine the numbers two at a time: find the LCM of the first two, then find the LCM of that result with the next number, and so on. For 4, 6, and 8: LCM(4,6) = 12, then LCM(12,8) = 24, so the LCM of all three is 24.

More math calculators