Finding a number that can divide evenly into another number?

  • Context: High School 
  • Thread starter Thread starter jim1174
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 7K views
jim1174
Messages
79
Reaction score
0
when you have two numbers and you need find a number can can divide evenly into both is there an easy method to do this
 
Mathematics news on Phys.org
jim1174 said:
when you have two numbers and you need find a number can can divide evenly into both is there an easy method to do this
There are some rules which can lessen the amount of work involved:
1. Even numbers are all evenly divisible by 2.
2. Numbers ending in 0 or 5 are also divisible by 5 or multiples of 5.
3. If the sum of the digits in a number can be divided evenly by 3, then the original number can also be divided by 3. For example, if n = 522, then 5 + 2 + 2 = 9, which is divisible by 3 evenly; therefore 522 is also evenly divisible by 3. (522/3 = 174)
 
jedishrfu said:
Are you thinking of the greatest common denominator?
Since there are no fractions involved here, you must mean "greatest common divisor". In fact there is no "greatest common denominator" for a set of fractions- there is the "least common denominator" which is a number into which all the denominators will divide.
 
HallsofIvy said:
Since there are no fractions involved here, you must mean "greatest common divisor". In fact there is no "greatest common denominator" for a set of fractions- there is the "least common denominator" which is a number into which all the denominators will divide.

Yes, you are right. I was thinking GCD and my memory brought up the wrong term. Thanks for the correction. I should have added a reference and then I would have caught my mistake.