Simplify Ratio
Calculator and formulas to simplify ratios using the Euclidean algorithm
Ratio Simplifier Calculator
What is calculated?
This function reduces a ratio to the smallest integers. The greatest common divisor (gcd) is computed using the Euclidean algorithm and both parts are divided by it.
Ratio Simplification Info
Simplification process
The simplification is performed in three steps:
- Find the greatest common divisor
- Divide both numbers by the gcd
- Output the simplified form
Why simplify? Simplified ratios are easier to understand and use.
Quick examples
gcd = 4
gcd = 25
gcd = 50
gcd = 7
Euclidean algorithm
The Euclidean algorithm is the most efficient method to compute the gcd.
Principle: gcd(a,b) = gcd(b, a mod b)
Mathematical formulas for ratio simplification
Simplification formula
Euclidean algorithm
gcd properties
Coprimality
Swap
Expand
Detailed example: Euclidean algorithm
Example: simplify 1920:1080
1Apply Euclidean algorithm
1920 ÷ 1080 = 1 R 840
1080 ÷ 840 = 1 R 240
840 ÷ 240 = 3 R 120
240 ÷ 120 = 2 R 0
gcd = 120
2Divide by gcd
Divide both numbers by 120
1080 ÷ 120 = 9
3Simplified ratio
Result: The ratio 1920:1080 is 16:9 (widescreen format)
Euclidean algorithm in detail
Algorithm steps
Example: gcd(48, 18)
gcd(48, 18) = gcd(18, 12)
gcd(18, 12) = gcd(12, 6)
gcd(12, 6) = 6
Result: 48:18 = 8:3
More simplification examples
Simple examples
Screen resolutions
Special cases
Practical applications
Scale recipes
Example: adjust ingredients
Original: 400g flour, 300g sugar
For every 4 parts flour, 3 parts sugar
Mixing colors
Example: color ratio
75ml red + 45ml blue
Simpler mixing ratio
Blueprints
Scale 1000:50 = 20:1
Simplified: 1 cm corresponds to 20 cm
Profit sharing
Partner A: €3000, Partner B: €2000
Ratio: 3000:2000 = 3:2
Mathematical foundations
Greatest common divisor
The greatest common divisor (gcd) of two numbers is the largest natural number that divides both numbers without remainder. It is fundamental for reducing fractions and ratios.
Algorithm efficiency
The Euclidean algorithm is very efficient and requires only O(log min(a,b)) steps. It was described by Euclid around 300 BC.
Key properties
- Uniqueness: The gcd is uniquely determined
- Commutativity: gcd(a,b) = gcd(b,a)
- Complete reduction: Result is always coprime
- Scaling: Reduced ratios remain proportional