What is Fraction Arithmetic via LCD & GCD?
Mathematical Foundation
Laws & Principles
- Division = Multiply by Reciprocal: Dividing by a fraction is equivalent to multiplying by its reciprocal (flip numerator and denominator). Half divided by one-quarter is Half times four over one. This is because dividing by x is mathematically identical to multiplying by (1/x).
- Always Reduce to Lowest Terms: A fraction is only in its canonical 'simplest form' when gcd(numerator, denominator) = 1. Without GCD reduction, fractions like 6/8 remain mathematically valid but non-standard. This calculator applies the Euclidean GCD algorithm seamlessly to all results.
- Addition Requires the LCD: You cannot add 1/3 and 1/4 directly. The denominators must match. You must find the Least Common Multiple (LCM) of 3 and 4 (which is 12) before attempting to add.
Step-by-Step Example Walkthrough
" Computing 3/4 + 2/5. "
- 1. Find LCD: The Least Common Multiple of 4 and 5 is 20.
- 2. Rewrite Fractions: 3/4 multiplied by 5/5 becomes 15/20. The fraction 2/5 multiplied by 4/4 becomes 8/20.
- 3. Add numerators: 15 + 8 = 23.
- 4. Result: 23/20. Check if simplifiable via GCD. GCD(23, 20) = 1. It is already simplified.