If a , b , c are integers such that 7 a + 4 b − 3 c = 0 , then ( a + b ) ( b + c ) ( c + a ) is divisible by which largest factor below?
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.
What about the solution (2,1,6): 2 * 7+1 * 4-3 * 6=14+4-18=0 confirmed. (2+1) * (6+1) * (6+2)=3 * 7 * 8=21 * 8=84 * 2 Meaning 84 should be the largest factor, doesnt it?
Log in to reply
Since 7 ( a + b ) = 3 ( b + c ) , we have a + b divisible by 3 and b + c divisible by 7 . Since 7 ( a + c ) = 2 ( 5 c − b ) we have a + c divisible by 2 . Thus ( a + b ) ( a + c ) ( b + c ) is always divisible by 4 2 .
We want the largest possible integer N such that N always divides ( a + b ) ( a + c ) ( b + c ) . From what we have already shown, N must be a multiple of 4 2 . The case a = 3 , b = 0 , c = 7 gives ( a + b ) ( a + c ) ( b + c ) = 2 1 0 , and so N divides 2 1 0 = 4 2 × 5 . On the other hand, the case a = 0 , b = 3 , c = 4 gives ( a + b ) ( a + c ) ( b + c ) = 8 4 , and hence N divides 8 4 = 4 2 × 2 . These three facts about N tell us that N = 4 2 .
I believe this is from OMK 2019?
Solve [ 7 a + 4 b − 3 c = 0 , a ] ⇒ a → 7 1 ( 3 c − 4 b )
( a + b ) ( a + c ) ( b + c ) /. a → 7 1 ( 3 c − 4 b ) ⇒ 4 9 1 ( − 6 ) ( 2 b − 5 c ) ( b + c ) 2
GCD @@ Union [ Flatten [ Table [ If [ 7 1 ( 3 c − 4 b ) ∈ Z , 4 9 1 ( − 6 ) ( 2 b − 5 c ) ( b + c ) 2 , Nothing ] , { b , 0 , 6 } , { c , 0 , 6 } ] ] ] ⇒ 4 2
Problem Loading...
Note Loading...
Set Loading...
By using modulo congruence, 7 a + 4 b ≡ 0 ( m o d 3 ) ⇒ a + b ≡ 0 ( m o d 3 )
Rearranging the expressions, c = 3 7 a + 4 b ⇒ ( a + b ) ( b + c ) ( c + a ) = ( a + b ) 3 7 ( a + b ) 3 2 ( 5 a + 2 b )
We also know that 5 a + 2 b ≡ 0 ( m o d 3 )
Let a + b = 3 k and 5 a + 2 b = 3 j , then ( a + b ) ( b + c ) ( c + a ) = ( 3 k ) 3 7 ( 3 k ) 3 2 ( 3 j ) = 4 2 k 2 j
Thus, 4 2 ∣ ( a + b ) ( b + c ) ( c + a ) .