PHP Program - Find LCM of Two Numbers
LCM stands for Least Common Multiple. The LCM of two numbers is the smallest number that can be divided by both numbers.
For example - LCM of 20 and 25 is 100 and LCM of 30 and 40 is 120.
Mathematically, LCM of two numbers (a and b) can be expressed as below:
a x b = LCM(a, b) x GCD(a, b) LCM(a, b) = (a x b) / GCD(a, b)
Method 1: Using For Loop to find GCD and LCM of two numbers
In the example below, for loop is used to iterate the variable i from 1 to the smaller number. If both numbers are divisible by i, then it modifies the GCD and finally gives the GCD of two numbers. GCD of two numbers is then used to calculate LCM of two numbers.
<?php $x = 20; $y = 25; if ($x > $y) { $temp = $x; $x = $y; $y = $temp; } for($i = 1; $i < ($x+1); $i++) { if ($x%$i == 0 && $y%$i == 0) $gcd = $i; } $lcm = ($x*$y)/$gcd; echo "LCM of $x and $y is: $lcm"; ?>
The above code will give the following output:
LCM of 20 and 25 is: 100
Method 2: Using While Loop to find GCD and LCM of two numbers
In the example below, larger number is replaced by a number which is calculated by subtracting the smaller number from the larger number. The process is continued until the two numbers become equal which will be GCD of two numbers. GCD of two numbers is then used to calculate LCM of two numbers.
<?php $p = $x = 20; $q = $y = 25; while ($x != $y) { if ($x > $y) $x = $x - $y; else $y = $y - $x; } $lcm = ($p*$q)/$x; echo "LCM of $p and $q is: $lcm"; ?>
The above code will give the following output:
LCM of 20 and 25 is: 100
Method 3: Using the recursive function to find GCD and LCM of two numbers
In the example below, recursive function is used which uses Euclidean algorithm to find GCD of two numbers which is further used to calculate LCM of two numbers.
<?php function gcd($x, $y) { if ($y == 0) return $x; return gcd($y, $x%$y); } $x = 30; $y = 40; $lcm = ($x*$y)/gcd($x,$y); echo "LCM of $x and $y is: $lcm"; ?>
The above code will give the following output:
LCM of 30 and 40 is: 120
Recommended Pages
- PHP Program - To Check Prime Number
- PHP Program - Bubble Sort
- PHP Program - Selection Sort
- PHP Program - Maximum Subarray Sum
- PHP Program - Reverse digits of a given Integer
- PHP - Swap two numbers
- PHP Program - Fibonacci Sequence
- PHP Program - Insertion Sort
- PHP Program - Find Factorial of a Number
- PHP Program - Find HCF of Two Numbers
- PHP Program - To Check Whether a Number is Palindrome or Not
- PHP Program - To Check Whether a String is Palindrome or Not
- PHP Program - Heap Sort
- PHP Program - Quick Sort
- PHP - Swap Two Numbers without using Temporary Variable
- PHP Program - To Check Armstrong Number
- PHP Program - Counting Sort
- PHP Program - Radix Sort
- PHP Program - Find Largest Number among Three Numbers
- PHP Program - Print Floyd's Triangle