answersLogoWhite

0


Best Answer

For the LCM of a set of numbers, write each number as a product of its prime factors in index form. Then, taking each prime in turn, find the highest index with which it appears in any of the numbers' representation. Finally, multiply these together.

So, for example, suppose you have 10, 16, 24 and 36

10 = 2*5

16 = 24

24 = 23*3

36 = 22*32


The highest power of the primes are 24, 32 and 5. Multiply these together to give 720 as the LCM.

User Avatar

Wiki User

βˆ™ 6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find the LCM of numbers using index forms?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find HCF of 90 using index notations?

It doesn't matter what you use, you still need at least two numbers to find a GCF.


Solution to find 1000th prime number using python?

Here's a start umbers=[True]*5001 index=2 primes=[] while index<5000: multiplier=2 while index*multiplier <= 5000: Numbers[index*multiplier]=False multiplier+=1 index+=1 while Numbers[index]==False and index < 5000: index+=1 for x in range(0,5000): if Numbers[x]==True: primes.append(x) x+=1 print primes


How do you find particular element in array?

by using index position we can find the particular element in array.


Is it possible to find the refractive index of the liquid without using a spherometer?

Yes, it is possible to find the refractive index of a liquid without using a spherometer. You can use a refractometer, which is a device specifically designed to measure the refractive index of liquids. Simply place a small amount of the liquid on the refractometer's prism and measure the refractive index reading that is displayed.


Write a C program to accept 10 numbers and find the sum and average?

#include using namespace std;int main(){int numberOfElemenets = 10;double myArray[numberOfElements] = {0.0};double sum = 0;for (int index = 0; index < numberOfElements; index++){cout


Which textbook section lists the page on which you can find information about a specific topic?

The index of a textbook will list the page numbers for specific topics, allowing you to quickly locate information. Simply look up the topic in the index to find the corresponding page numbers where it is discussed in the book.


In what type of rocks would geologists most likely find evidence of past life forms?

Index Fossils


What type of rocks would geologists most likely find evidence of past life forms?

Index Fossils


Boy's method to find the refractive index of a liquid?

Boy can find the refractive index of a liquid using a refractometer or by measuring the angle of refraction using a laser pointer. By measuring the critical angle of total internal reflection, he can calculate the refractive index of the liquid. Alternatively, he can use Snell's Law in conjunction with the angles of incidence and refraction to determine the refractive index.


How to write a C program to find largest 2 numbers using pointers?

program to find maximum of two numbers using pointers


How do you find the refractive index of a solution?

You can find the refractive index of a solution using a refractometer, which measures how light bends as it passes through the solution. The refractive index is calculated by comparing the speed of light in a vacuum to the speed of light in the solution. The refractometer provides a numerical value that corresponds to the refractive index of the solution.


How can you get position of number from given some number by using array in c language?

Traverse the array from index 0 until you find the number. Return the index of that number.