What’s the biggest number that can cleanly divide both 36 and 90?
If you’ve ever wrestled with fractions, simplified ratios, or just love a good math puzzle, you’ve probably run into that question. It sounds simple, but the steps behind it reveal a neat blend of logic, patterns, and a sprinkle of history. Let’s dig in and see why the greatest common factor (GCF) of 36 and 90 matters, how to find it, and what pitfalls to avoid It's one of those things that adds up..
What Is the Greatest Common Factor
When two numbers share a bunch of divisors, the greatest common factor—sometimes called the greatest common divisor (GCD)—is the largest one they both can be divided by without leaving a remainder. Think of it as the biggest “building block” they have in common.
For 36 and 90, that building block tells us how far we can shrink a fraction like 36/90 without changing its value, or which size of tiles will perfectly cover a floor that’s 36 inches by 90 inches with no scraps left over.
Prime factorization in plain English
One of the cleanest ways to see the GCF is to break each number down into its prime ingredients. Prime numbers are the atoms of arithmetic—numbers that can’t be split any further except by 1 and themselves.
- 36 = 2 × 2 × 3 × 3 (or 2² × 3²)
- 90 = 2 × 3 × 3 × 5 (or 2 × 3² × 5)
Notice the overlap: both have a 2 and two 3s. The product of those shared primes—2 × 3 × 3—gives us 18. That’s the GCF.
Why It Matters / Why People Care
You might wonder, “Why bother with the GCF? I can just use a calculator.” The short answer: the GCF shows up everywhere you need to simplify, optimize, or find common ground Easy to understand, harder to ignore..
- Fractions – Reducing 36/90 to its simplest form is just dividing numerator and denominator by 18, yielding 2/5. No calculator needed, just the GCF.
- Ratios – If you’re mixing ingredients in a kitchen and the recipe calls for 36 g of sugar to 90 g of flour, the GCF tells you the smallest batch you can make while keeping the same taste balance.
- Geometry & design – Want to tile a rectangular patio that’s 36 ft by 90 ft with square tiles of the same size and no cuts? The GCF (18 ft) is the biggest tile you can use.
- Programming – Algorithms that compute GCF are the backbone of cryptographic keys, data compression, and even music rhythm generators.
In practice, knowing the GCF saves time, reduces error, and gives you a deeper sense of how numbers relate. It’s a tool that turns “big numbers” into something you can actually work with Which is the point..
How to Find the GCF of 36 and 90
There are several reliable methods. Below I walk through the three I use most often, with a focus on the one that feels most intuitive for these particular numbers.
1. Prime factorization (the “break‑it‑down” method)
- List the prime factors of each number.
- 36 → 2 × 2 × 3 × 3
- 90 → 2 × 3 × 3 × 5
- Circle the common primes.
Both have one 2 and two 3s. - Multiply the circled primes together.
2 × 3 × 3 = 18.
That’s it. Simple, visual, and perfect when the numbers aren’t huge.
2. Euclidean algorithm (the “divide‑and‑conquer” trick)
This method shines when you’re dealing with larger numbers or want a quick mental calculation Less friction, more output..
- Divide the larger number (90) by the smaller (36) and keep the remainder.
90 ÷ 36 = 2 remainder 18. - Replace the larger number with the smaller (36) and the smaller with the remainder (18).
Now we have 36 and 18. - Repeat: 36 ÷ 18 = 2 remainder 0.
When the remainder hits zero, the divisor at that step—18—is the GCF.
3. Listing common factors (the “old‑school” way)
- Write out all factors of each number.
- Factors of 36: 1, 2, 3, 4, 6, 9, 12, 18, 36
- Factors of 90: 1, 2, 3, 5, 6, 9, 10, 15, 18, 30, 45, 90
- Spot the biggest number that appears in both lists.
18 again.
While this method can be tedious for big numbers, it’s a good sanity check when you’re learning.
Common Mistakes / What Most People Get Wrong
Even seasoned students slip up. Here are the blunders I see most often and how to dodge them Less friction, more output..
-
Skipping the prime factor “match” step
Some folks multiply all the primes from both numbers, ending up with 2 × 2 × 3 × 3 × 2 × 3 × 3 × 5 = 1620, which is obviously not a factor of either original number. The trick is to only keep the shared primes. -
Confusing GCF with LCM
The least common multiple (LCM) is the smallest number both originals fit into, while the GCF is the biggest number they fit into. For 36 and 90, the LCM is 180, not 18. Mixing them up leads to wrong simplifications No workaround needed.. -
Using the Euclidean algorithm incorrectly
A common slip is to stop after the first remainder (18) and assume that’s the answer without checking the next division. In this case it works, but with 48 and 18 you’d get 48 ÷ 18 = 2 r 12, then 18 ÷ 12 = 1 r 6, and you need to keep going until the remainder is zero. -
Leaving out 1 as a factor
Technically, 1 is always a common factor. If you forget to list it, you might think there’s “no common factor” when the numbers are co‑prime (like 7 and 9). That’s a subtle confidence‑killer That's the whole idea.. -
Relying on a calculator’s “gcd” button without understanding
It’s fine to use tech, but if you don’t know why the answer is what it is, you can’t explain it to a teammate or catch an input error.
Practical Tips / What Actually Works
Here’s the cheat sheet I keep in my back pocket (or on a sticky note) whenever I need a GCF fast Not complicated — just consistent..
-
Pick the method that matches the size of the numbers.
Small numbers → prime factorization or listing.
Medium‑to‑large numbers → Euclidean algorithm. -
When using prime factorization, write the factors in ascending order.
It makes spotting the overlap easier, especially if you’re juggling three or more numbers. -
Remember the “two‑step” Euclidean shortcut:
If the larger number is a multiple of the smaller, the smaller is the GCF. Example: GCF(24, 12) = 12 because 24 ÷ 12 leaves no remainder But it adds up.. -
Use the “difference” trick for numbers that are close.
GCF(a, b) = GCF(|a − b|, min(a, b)).
For 36 and 90, the difference is 54; then GCF(54, 36) → 18. It’s handy when one number is a neat multiple of the other’s difference. -
Check your work with a quick division test.
Divide both original numbers by your candidate GCF. If both results are whole numbers and there’s no larger common divisor, you’re good Most people skip this — try not to.. -
Apply the GCF right away to simplify.
Whenever you see a fraction, ratio, or product that includes 36 or 90, pause and ask, “What’s the GCF? Can I cancel something?” It saves you from carrying unnecessary zeros.
FAQ
Q: Is the GCF always a prime number?
A: No. The GCF can be composite, as we saw with 18 (2 × 3²). Only when the two numbers share a single prime factor will the GCF be prime Simple, but easy to overlook..
Q: How do I find the GCF of more than two numbers, say 36, 90, and 150?
A: Factor each number, then keep only the primes that appear in every list, using the smallest exponent each time. For 36 (2² × 3²), 90 (2 × 3² × 5), and 150 (2 × 3 × 5²), the common primes are just 2 and 3, with the smallest exponents 2¹ and 3¹, giving a GCF of 2 × 3 = 6.
Q: Can I use the GCF to find the simplest form of a decimal like 0.36/0.90?
A: Convert the decimals to fractions first (36/100 ÷ 90/100 = 36/90). Then apply the GCF (18) to get 2/5. So yes, the GCF is the bridge.
Q: Does the Euclidean algorithm work with negative numbers?
A: Technically, you can take absolute values first; the GCF is always non‑negative. So GCF(‑36, 90) = GCF(36, 90) = 18.
Q: Why do some textbooks teach “prime factor trees” instead of the Euclidean algorithm?
A: Prime factor trees help visual learners see the building blocks of numbers. The Euclidean algorithm is faster for large numbers, but factor trees reinforce the concept of common prime factors—a foundation for later topics like least common multiples and polynomial factoring The details matter here..
Finding the greatest common factor of 36 and 90 isn’t just a classroom exercise; it’s a practical skill that pops up in everyday math, design, cooking, and even coding. Whether you prefer to break numbers down into primes, run the Euclidean algorithm in your head, or simply list factors on a scrap of paper, the goal is the same: identify that biggest shared divisor and use it to simplify, optimize, and understand the numbers you’re working with.
So next time you see 36 and 90 side by side, you’ll instantly know the answer is 18, and you’ll have a toolbox of methods ready to tackle any pair of numbers that cross your path. Happy factoring!
Going Beyond the Basics
Now that you’ve got the mechanics down, let’s explore a few scenarios where the GCF becomes a hidden hero.
1. Reducing Complex Fractions
Suppose you encounter a fraction‑within‑a‑fraction:
[ \frac{\frac{36}{7}}{\frac{90}{13}}. ]
Instead of performing two separate divisions, rewrite it as a single fraction:
[ \frac{36}{7}\times\frac{13}{90}=\frac{36\times13}{7\times90}. ]
Before you multiply, spot the GCF between the numerator and denominator.
Think about it: - (GCF(36,90)=18). - Cancel 18 from both: (\frac{36\div18}{90\div18}=\frac{2}{5}).
Now the expression simplifies to (\frac{2\times13}{7\times5}=\frac{26}{35}).
The GCF saved you from dealing with huge numbers and gave a clean result in seconds.
2. Scaling Recipes
A recipe calls for 36 g of sugar and 90 g of flour, but you only have a ½‑cup measuring cup (≈ 60 g). To keep the proportions correct, find the GCF:
- Divide each ingredient by 18 → 2 g sugar, 5 g flour (the “unit” ratio).
- Determine how many units fit into your cup: (60 ÷ (2+5) = 8.57) (≈ 8 whole units).
- Multiply the unit amounts back: (2×8=16) g sugar, (5×8=40) g flour.
You’ve kept the original 2:5 ratio while fitting the limited measuring tool.
3. Optimizing Code for Integer Arithmetic
In programming, especially with embedded systems, division can be expensive. If you need to compute:
int result = (a * b) / c;
and you know a = 36, b = 90, c = 18, you can pre‑divide the operands by the GCF to avoid overflow:
int a_reduced = a / 18; // 2
int b_reduced = b / 18; // 5
int result = a_reduced * b_reduced; // 10
The same principle works for any large integers where c shares a common factor with the numerator.
4. Geometry and Scale Models
A 1:18 scale model of a car that’s 36 inches long in real life will be:
[ \frac{36\text{ in}}{18}=2\text{ in}. ]
If the wheelbase is 90 in in real life, the model wheelbase becomes (90 ÷ 18 = 5) in. Recognizing that 18 is the GCF of the two measurements guarantees the model stays true to the original proportions.
A Quick Reference Cheat Sheet
| Method | When to Use | Steps (brief) |
|---|---|---|
| Prime‑Factor Method | Small numbers, learning phase | Factor each number → intersect primes → multiply lowest powers |
| Euclidean Algorithm | Large numbers, mental math | Repeated subtraction/division: (GCF(a,b)=GCF(b, a\bmod b)) |
| Listing Factors | Two‑digit numbers, visual learners | Write all factors → find largest common |
| Shortcut via Difference | Numbers close together (e.This leads to g. Practically speaking, , 90 and 36) | (GCF(a,b)=GCF( |
| Software/Calculator | Very large integers | Use built‑in gcd function (e. Here's the thing — g. , `math. |
People argue about this. Here's where I land on it.
Keep this table handy; the right tool speeds up the process and reduces errors But it adds up..
Closing Thoughts
The greatest common factor of 36 and 90 is 18, but the lesson extends far beyond a single answer. Mastering the GCF equips you to:
- Simplify fractions and ratios without unnecessary arithmetic.
- Maintain proportional relationships in design, cooking, and modeling.
- Write cleaner, safer code by reducing the risk of overflow and unnecessary division.
- Think algorithmically, applying the Euclidean method as a mental shortcut for any pair of integers.
Whether you’re a student polishing up homework, a hobbyist tinkering with a DIY project, or a developer optimizing low‑level calculations, the GCF is a versatile instrument in your mathematical toolbox. The next time you encounter two numbers—be they 36 and 90, 144 and 210, or 2,457 and 9,876—remember the strategies outlined here, pick the one that feels most natural, and let the greatest common factor do the heavy lifting.
Happy calculating!
5. When the Numbers Aren’t So Friendly
Sometimes the pair you’re working with won’t share an obvious factor like 18. In those cases, the Euclidean algorithm still shines, but you can combine it with a quick “difference” trick to shave a few steps off.
Example: Find the GCF of 84 and 126 Worth keeping that in mind..
- Take the difference – 126 − 84 = 42.
- Replace the larger number with the difference: now you have 84 and 42.
- Apply Euclid – 84 ÷ 42 = 2 remainder 0, so the GCF is 42.
The difference method works best when the numbers are relatively close; the smaller the gap, the fewer division steps you’ll need That's the whole idea..
6. Extending to More Than Two Numbers
If you need the GCF of three or more integers, simply chain the operation:
[ \text{GCF}(a,b,c)=\text{GCF}(\text{GCF}(a,b),c) ]
Example: GCF of 36, 90, and 144.
- GCF(36, 90) = 18 (as shown earlier).
- GCF(18, 144) → 144 ÷ 18 = 8 remainder 0, so the final GCF is 18.
This property follows from the fact that the set of common divisors of all numbers is the intersection of the pairwise common‑divisor sets It's one of those things that adds up..
7. Real‑World Pitfalls and How to Avoid Them
| Pitfall | Why It Happens | How to Guard Against It |
|---|---|---|
| Assuming the larger number is always divisible by the smaller | Over‑reliance on intuition; e.g., thinking 90 ÷ 36 is an integer | Always run a quick remainder check (% operator) or use Euclid’s algorithm |
| Skipping the reduction step in code | Belief that modern CPUs handle large intermediate products safely | For embedded or safety‑critical systems, pre‑reduce whenever possible; document the reasoning |
| Forgetting to handle zero | GCF(0, n) is defined as | n |
| Mixing units | Converting inches to centimeters without adjusting the GCF | Perform unit conversion after you’ve reduced the ratio, or keep everything in a single unit system while calculating the GCF |
8. A Mini‑Project: Building a Ratio‑Preserving Resizer
To cement the concepts, try a short programming exercise. Write a function that takes three arguments—width, height, and maxSize—and returns a new width and height that fit inside a square of side maxSize while preserving the original aspect ratio.
import math
def resize_preserve_ratio(w, h, max_size):
# Step 1: Find the GCF to reduce the ratio to its simplest form
divisor = math.gcd(w, h)
w_simplified, h_simplified = w // divisor, h // divisor
# Step 2: Scale up until one dimension hits the limit
scale = max_size // max(w_simplified, h_simplified)
return w_simplified * scale, h_simplified * scale
# Example usage:
print(resize_preserve_ratio(36, 90, 100)) # → (40, 100)
Notice how the GCF is used only to simplify the ratio; the final scaling step then guarantees the resized dimensions stay within the bounding box. This pattern appears in photo‑editing software, game‑engine UI layout, and even in printing pipelines.
Conclusion
The greatest common factor is far more than a textbook exercise—it’s a practical, versatile tool that surfaces in everyday calculations, engineering design, and low‑level programming. By mastering multiple pathways to the GCF—prime factorization for small, pedagogical cases; the Euclidean algorithm for speed and scalability; the difference shortcut for close‑spaced numbers; and software utilities for massive integers—you’ll be equipped to tackle any situation that demands simplification, proportional reasoning, or safe arithmetic Not complicated — just consistent. But it adds up..
Remember the key takeaways:
- Identify the simplest method for the numbers at hand.
- Always verify with a remainder check or a built‑in
gcdfunction. - use the GCF to reduce fractions, avoid overflow, and keep models true to scale.
- Extend the concept cleanly to three or more numbers by chaining the operation.
Armed with these strategies, the next time you see “36 and 90” (or any pair of integers), you’ll instantly recognize that the hidden common thread is 18—and you’ll know exactly how to pull that thread out, no matter how tangled the problem may seem. Happy factoring!