What if I told you that something as simple as writing numbers in a different base could tap into a whole new way of thinking about math?
I've been flipping through old math textbooks lately—mostly out of nostalgia, but also because I keep stumbling on these weird little notations that make you pause and go, "Wait, what does this even mean?" One of those moments happened when I saw "1 1 3" written down in a column of decimal conversions. At first glance, it looked like a typo. But then it clicked: this wasn't base 10 at all. So this was base 3. And suddenly, the whole thing made sense.
Let me walk you through what that means—and why it matters more than you might think.
What Is 1 1 3 in a Decimal
Okay, let’s start from the top. When we say "1 1 3 in a decimal," we’re really talking about interpreting the number 113 as if it were written in base 3, and then converting it into base 10, which is what we normally use every day.
But here’s the thing—most of us grow up thinking in base 10. They speak in base 2, or binary. Still, our fingers and toes gave us ten digits, so base 10 stuck. But computers? And mathematicians love playing with other bases too.
So what happens when we take 113 (assuming it's in base 3) and translate it into our familiar base 10 world?
Let’s break it down.
In any base system, each digit represents a power of that base, starting from the right. For base 3, the rightmost digit is 3⁰ (which is 1), the next is 3¹ (which is 3), then 3² (which is 9), and so on.
So for 113 in base 3:
- The leftmost digit (1) sits in the 3² place → 1 × 9 = 9
- The middle digit (1) sits in the 3¹ place → 1 × 3 = 3
- The rightmost digit (3) sits in the 3⁰ place → 3 × 1 = 3
Add them up: 9 + 3 + 3 = 15.
That’s it. 113 in base 3 equals 15 in base 10, or decimal.
Why That Matters (Even If It Seems Trivial)
Now, I know what you’re thinking: "So what? Why should I care that 113 base 3 is 15?"
Because this little exercise teaches you something fundamental about how number systems work—and once you get that, everything from computer science to cryptography starts to feel a little less like magic and a lot more like logic.
Understanding different bases helps you see patterns. That's why it makes you comfortable with abstraction. And honestly? It makes you a better problem solver.
Think about it: when you learn that 113 in base 3 is 15 in decimal, you’re not just memorizing a fact. Because of that, you’re practicing a skill—translating between systems. That’s something engineers do all the time. Worth adding: programmers switch between binary, hexadecimal, and decimal without blinking. And scientists often work in specialized number formats.
How Base Conversion Actually Works
Let’s go a little deeper here. How does this conversion process work again?
Every number in any base is really a sum of digits multiplied by powers of that base. The position of each digit tells you which power to use.
As an example, let’s take another number: 2101 in base 4.
Breaking it down:
- 2 × 4³ = 2 × 64 = 128
- 1 × 4² = 1 × 16 = 16
- 0 × 4¹ = 0 × 4 = 0
- 1 × 4⁰ = 1 × 1 = 1
Add them together: 128 + 16 + 0 + 1 = 145.
So 2101 in base 4 is 145 in decimal.
The pattern is always the same. You just need to pay attention to place value and exponents.
Real Talk About Number Bases
Here’s what most people miss when they first learn about this stuff: number bases aren’t arbitrary. Which means they’re tools. And like any tool, they’re chosen based on what you’re trying to accomplish.
Base 2 (binary) works great for computers because circuits are either on or off—there are only two states. Base 16 (hexadecimal) is handy for programmers because it compresses long binary strings into shorter, more readable chunks.
If you found this helpful, you might also enjoy how many feet is half a mile or how many weeks for a month.
And base 3? Well, it’s not commonly used in everyday life, but it shows up in some interesting places—like in balanced ternary systems, which some early computers actually used because they could represent negative numbers more efficiently.
But back to our original question: 113 in base 3 equals 15 in decimal.
Let me say that again, slowly:
113₃ = 15₁₀
See how that works now?
Common Mistakes People Make
Now, here’s where things usually go sideways. People mix up the order of operations, or forget to multiply by the right power of the base.
One big mistake is treating the rightmost digit as the highest power. It’s not. It’s always the leftmost digit that has the highest exponent.
Another common error is misreading the base itself. If someone says "113 in base 3," you better make sure you’re actually working in base 3—not base 4 or base 5.
And then there’s the classic mix-up between the value of the digit and its place. Just because a digit is a “3” doesn’t mean it contributes 3 to the total. It depends on where it sits.
A Quick Check: Is 113 Even Valid in Base 3?
Hold on. Before we wrap this up, let’s double-check something important.
In base 3, the only valid digits are 0, 1, and 2. You can’t have a digit that equals or exceeds the base.
So what about that last digit in 113? It’s a 3.
Uh-oh.
That means 113 isn’t actually a valid number in base 3.
Wait, what?
This is exactly why I love math—it keeps you honest.
If we’re being strict, 113 in base 3 doesn’t exist. In real terms, the digit "3" isn’t allowed in base 3. So technically, the question might be flawed—or maybe it’s a trick question testing whether you know the rules.
But let’s assume the number was meant to be 112 in base 3 instead. Then:
- 1 × 3² = 9
- 1 × 3¹ = 3
- 2 × 3⁰ = 2
Total: 9 + 3 + 2 = 14.
So 112₃ = 14₁₀.
Alternatively, maybe the number was supposed to be written in base 4? Let’s try that.
In base 4, digits can be 0, 1, 2, or 3. So 113 is valid.
Converting 113 from base 4 to decimal:
- 1 × 4² = 16
- 1 × 4¹ = 4
- 3 × 4⁰ = 3
Total: 16 + 4 + 3 = 23.
So 113₄ = 23₁₀.
This is why context matters.
Practical Tips for Working With Bases
If you’re going to be converting numbers between bases regularly, here are a few practical tips:
- Always verify the validity of the number first. Make sure all digits are less than the base.
- Write out the powers of the base. It helps to list them before you start calculating.
- Double-check your arithmetic. It’s easy to slip up when adding or multiplying, especially with larger numbers.