All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Numbers
Absolute Crossed Perfect Square Surmise (Posted on 2023-01-15) Difficulty: 3 of 5
Determine all possible integers n such that:
             abs(2n+5n-65)
is a perfect square.

Provide valid reasoning for your answer.

*** abs denotes the absolute value function.

See The Solution Submitted by K Sengupta    
Rating: 5.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution Solution | Comment 1 of 2
Apparently, the only solutions to the function f(n) = abs(2^n+5^n-65) are:
f(2) = 6^2
f(4) = 24^2

Proof:
Negative values of n lead to non-integer values of the function between 64 and 65, and n=0 yields f(0) = 63.

For positive integers, the final digit of the function cycles between the nonzero even digits.  When n mod 4 is {0,1,2,3} the final digit is {6,2,4,8}.
So if n is odd, the function can never be a square since squares never end in 2 or 8.

For positive even n < 5, the solutions n=2 and n=4 have been found by direct calculation.

For n=6, the square root of f(6) is slightly less than 125 or 5^3
For n=8, the square root of f(6) is slightly more than 625 or 5^4
For even n >= 8, the 5^n term dominates the function.  Since n is even, let n = 2k.  So the square root of the function (5^2k + 2^2k - 65) is always slightly more than 5^k.  How much more?

The next higher square after (5^k)^2 is (5^k + 1)^2.

Compare 5^2k + 2*5^k + 1  with 5^2k + 2^2k - 65.
2*5^k + 1 vs 2^2k - 65
2*5^k + 66 vs 4^k
5^k + 33 vs 4^(k-1)
5^k + 33 is always greater than 4^(k-1)
So for even n >= 8, the function is just slightly greater than a perfect square, too close to be the next larger square.

-------
for n in range(1, 200):
    if isSquare(abs(2**n+5**n-65)):
        print(n, abs(2**n+5**n-65), abs(2**n+5**n-65)**.5)

output:
2 36 6.0
4 576 24.0

  Posted by Larry on 2023-01-15 07:59:18
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (12)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information