MHB Find Max Sum Given Integers a,b,c,d

  • Thread starter Thread starter Albert1
  • Start date Start date
AI Thread Summary
The discussion revolves around finding the maximum sum of integers a, b, c, and d given the equations a+b=c, b+c=d, and c+d=a, with the condition that b is greater than 0. By solving the equations, it is determined that a = -3b, c = -2b, and d = -b, leading to the sum a + b + c + d = -5b. The maximum occurs when b is at its smallest integer value, which is 1, resulting in a maximum sum of -5. The solution emphasizes the importance of the constraints on b for maximizing the sum.
Albert1
Messages
1,221
Reaction score
0
a,b,c,d are integers

given :a+b=c, b+c=d , c+d=a

now if b>0, find max(a+b+c+d)
 
Last edited:
Mathematics news on Phys.org
Albert said:
a,b,c,d are integers

given :a+b=c, b+c=d , c+d=a

now if b>0, find max(a+b+c+d)

by solving we get

a = -3b,
c = -2b
d = -b

so sum = a + b + c + d = - 5b

it is largest when b ls smallest

b = 1 as b > 0 and integer

so largest sum = - 5
 
Last edited:
Albert said:
a,b,c,d are integers

given :a+b=c, b+c=d , c+d=a

now if b>0, find max(a+b+c+d)

The linear system of equations...

$$ a-c= - b$$

$$c- d= - b$$

$$a - c - d =0\ (1)$$

... has solution $a= - 3 b$, $c=- 2 b$, $d= - b$, so that is $a + b + c + d = - 5 b$ and the maximum is for b= 1, i.e. max (a + b + c + d) = -5...

Kind regards

$\chi$ $\sigma$

P.S. I didn't see that Kaliprasad solved before me... sorry!...
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Back
Top