Sum based on sub-sums

100 Views Asked by At

Let's say, we have three numbers: $a, b, c$

but we know only their sums: $x = a + b, y = b + c.$

Is it possible to find sum $z = a + b + c$?

edit - $a, b, c$ are natural numbers

2

There are 2 best solutions below

0
On BEST ANSWER

Express a and c in term of b. (i) a=x-b (ii) c=-b+y. Substitute in z, z=(x-b)+b+(-b+y). The natural number b determine the solution triplet (a,b,c). How many solutions b can we have? Any natural number smaller than min(x,y) will do.

2
On

No.

For example, take $x=y=0$.

Then, taking an arbitrary value of $a$, you can set $b=-a$, $c=a$ and you will have $x=y=0$ and $z=a$.