I am doing a lesson on simplifying fractions and the lesson said to find the GCD (Greatest Common Divisor). If the fraction is large, factoring both the top and bottom numbers would be very time consuming. So what is the easiest/simplest way of factoring large numbers? Ex: $$\frac{5,692}{84}$$
You could just go and check all numbers for divisibility but with large numbers that takes a long time. You could also use factoring tree but that does not always catch all of the factors and takes up a lot of space. What is the quickest way of factoring these types of numbers? Or is their a easier way of simplifying fractions than finding the GCD ?
For any integers $A,B,C$ we have $\gcd (A,B)=\gcd (A,B-AC).$
So $$\gcd (84, 5692)=\gcd (84,\;5692-84\cdot 70)=$$ $$=\gcd (84,-188)=\gcd(84,188)=$$ $$= \gcd (84,\;188-84\cdot 2)=\gcd(84,20)=$$ $$=\gcd(84-20\cdot 4,20)=\gcd (4,20)=$$ $$=\gcd (4,20-4\cdot 5)=\gcd (4,0)=4.$$
....In the first displayed line above we could begin with "$67$" instead of "$70$" because $5692=84\cdot 67 +R$ where the remainder $R$ is between $0$ and $84$. But when working manually, it is often easier to employ a "rounder " number like $70$. And once you get to small values like $\gcd (84,20)$ or $\gcd (4,20)$ it can be calculated at a glance.
So $5692/84=(5692/4)/(84/4)=1423/21$ in lowest terms