Let the three sides of a triangle be integers l , m , n with l > m > n and satisfy the equation
{ 1 0 4 3 l } = { 1 0 4 3 m } = { 1 0 4 3 n }
Find the minimum perimeter of such a triangle.
Details and Assumptions :
{ x } = x − [ x ] and [ x ] denotes the integral part of the number x .
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.
Thank you very much for a very detailed solution. Solved the problem almost completely but forgot that l,m and n are all sides of a triangle so my solution of 3000 was not correct=)
I USED THE CONCEPT OF ORDER OF 3 MODULO 625 AND 16 THEY WERE 500, 4 RESPECTIVELY. SO, ORDER OF 3 MODULO 10000 IS 500 . NOW USING TRIANGLE INEQUALITY, I FOUND THAT n IS ATLEAST 501 AND THUS THIS IS SOLVED.
Please show the calculation in detail.
I simply try to see how the last digit/ last two digits... till 4 repeat. Took me a lot. I thought I could do it in c++ but it gave me an error cause it can't get to numbers that high. I used wolfram.
The main idea is to notice that 3 5 0 0 is the smallest power of 3 other than 1 that is congruent to 1 mod 10000
Log in to reply
Can you please reveal the three sides??
Yes please reveal three sides
Problem Loading...
Note Loading...
Set Loading...
This means l ≡ m ≡ n = W ( m o d 1 0 4 ) for some positive integer W which we're trying to minimize.
The trick is to find the smallest value of x such that 3 x ≡ 1 ( m o d 1 0 4 ) . By using Euler Totient Function, we have 3 4 0 0 0 ≡ 1 ( m o d 1 0 4 ) .
This suggests that 3 2 0 0 0 ≡ 1 or − 1 , considering modulo 1 0 4 . Binomial expansion, only see the last few terms: 3 2 0 0 0 = ( 1 0 − 1 ) 2 0 0 0 ≡ 1 .
So 3 2 0 0 0 ≡ 1 only.
Repeat. Binomial expansion: 3 1 0 0 0 = ( 1 0 − 1 ) 5 0 0 ≡ ( 2 5 0 0 ) ⋅ 1 0 2 − 5 0 0 ⋅ 1 0 + 1 ≡ 1
Then, 3 1 0 0 0 ≡ 1 only.
Repeat. Binomial expansion: 3 5 0 0 = ( 1 0 − 1 ) 5 0 0 ≡ ( 2 5 0 0 ) ⋅ 1 0 2 − 5 0 0 ⋅ 1 0 + 1 ≡ 1
Which yields 3 5 0 0 ≡ 1
Repeat. Binomial expansion:
3 2 5 0 = ( 1 0 − 1 ) 1 2 5 ≡ 1 − ( 1 1 2 5 ) ⋅ 1 0 + ( 2 1 2 5 ) ⋅ 1 0 2 − ( 3 1 2 5 ) ⋅ 1 0 3 ≡ 1
Analogously, We can get 3 1 0 0 ≡ 1
Hence, the smallest value of x is 5 0 0
Thus the last four digits of 3 5 0 0 n is equals to 0 0 0 1 , for natural number n
So the smallest three values are 3 5 0 0 , 3 1 0 0 0 , 3 1 5 0 0 , but 5 0 0 + 1 0 0 0 > 1 5 0 0 which doesn't satisfy the triangle inequality.
The solution for ( l , m , n ) is then ( 5 0 0 + Q , 1 0 0 0 + Q , 1 5 0 0 + Q ) for positive numbers Q ≥ 1
Which means the minimum l + m + n equals ( 5 0 0 + 1 ) + ( 1 0 0 0 + 1 ) + ( 1 5 0 0 + 1 ) = 3 0 0 3