Find a + b + c . If a , b and c is a positive integer a + b + c 1 1 = 1 . 5
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
nice solution :D
Here is how I solved it:
a + b + c 1 1 = a + c b c + 1 1 = a + b c + 1 c = b c + 1 a b c + a + c = 2 3
where the last equality is given by the problem statement.
Now we can say b c + 1 = 2 ⇒ b c = 1 and since a , b , c are positive integers we have b = 1 , c = 1 .
Similarly we can say a b c + a + c = 3 , and since b = 1 , c = 1 we have 2 a + 1 = 3 ⇒ a = 1
Therefore a + b + c = 1 + 1 + 1 = 3
Good job :D
Note that a = 1
b + c 1 1 = 2 1 b + c 1 = 2 = > b = c = 1 Thus, a + b + c = 1 + 1 + 1 = 3
There is a grammar error in the problem as stated. It should read:
Find a+b+c. If a, b, and c are positive integers.
Otherwise you could technically assume that a and b are not restricted to positive integers which would give you an infinite number of solutions.
Problem Loading...
Note Loading...
Set Loading...
This is simple if we can express 1 . 5 = 2 3 in the form of a continued fraction: 2 3 = 1 + 2 1 = 1 + 1 + 1 1 1 → a = b = c = 1 → a + b + c = 1 + 1 + 1 = 3
If you don't know much about continued fractions,read the Wikipedia article on it.