Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Can we add without using addition?

+2
−6

Is there a formula that applies $a + b = c$ without addition. I tried many times to make such equation.

Here's what I have in mind, we get 2 values, call them $a$ and $b$. The objective is to get the sum, without using addition at all. What does "no addition" mean here? Basically, you can't use the addition operator in the equation. In fact, subtracting the additive inverse of $b$ to $a$ still counts as using the addition operator. No $\sum$ either.

So what else? "I tried many times to make such equation." Here's an example I did with $2 + 3 = 5$:

$$2 + 3 = 5$$ $$2 \times 3 = 6 \ne 5$$ $$6 - (3 - 2) = 6 - 1 = 5$$

So I thought $(a \times b) - (b - a)$ was plausible, but then I tried $3 + 6 = 9$:

$$3 + 6 = 9$$ $$3 \times 6 = 18 \ne 9$$ $$18 - (6 - 3) = 18 - 3 = 15 \ne 9$$

I haven't tried division yet because it can result to decimals, and we all know how fuzzy they are.

If it is even possible, can you get 2 values to result to their sum without any form of addition?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

3 comment threads

Generally it doesn't make any sense (1 comment)
You used addition in your proposed method. (2 comments)
Unclear what ‘pretty much just addition’ forbids (2 comments)

3 answers

You are accessing this answer with a direct link, so it's being shown above all other answers regardless of its score. You can return to the normal view.

+3
−0

Yes, we can.

log(10^x * 10^y)

History
Why does this post require moderator attention?
You might want to add some details to your flag.

2 comment threads

Bravo, a very imaginative answer. But does this really avoid addition? Lets say I want to compute 1+2... (1 comment)
Now *that*'s the kind of answer I'm looking for. (2 comments)
+5
−0

You could use the Peano axioms instead to define addition - using the successor function,

$$a + 0 = a $$

$$a + S(b) = S(a + b)$$

But I'd argue that this is not different - addition is defined this way to begin with...

In my opinion the question makes no sense - addition is addition, you can break it down to its definition, but that's still addition...

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

indeed, the question makes no sense (1 comment)
+1
−0

If you're allowed to use subtraction but not addition, then you could try something like

$$c = 1000 - (( 1000 - a ) - b )$$

This reminds me of the way nearly all electronic and mechanical calculators and computers use the exact same ALU to do both addition and subtraction, rather than a dedicated adder and a separate subtractor.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »