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

Home > Numbers
Sorta Legendrian... (Posted on 2023-06-02) Difficulty: 4 of 5
Find all possible nonnegative quadruplets (a,b,c,d) that satisfy this equation:
     2a + 6b + 9c = 11d
Prove that no further nonnegative solution to the given equation is possible.

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.)
Some Thoughts Computer solution without analytic proof | Comment 1 of 3
(a, b, c, d)
(0, 0, 1, 1)  2^a + 6^b + 9^c = 11^d = 11
(2, 1, 0, 1)  2^a + 6^b + 9^c = 11^d = 11
(2, 2, 2, 2)  2^a + 6^b + 9^c = 11^d = 121

-----
import math
afactor = math.log(11)/math.log(2)
bfactor = math.log(11)/math.log(6)
cfactor = math.log(11)/math.log(9)
big = 50
solns = []
for d in range(1,big+1):
    rhs = 11**d
    amax = int(afactor * d)
    bmax = int(bfactor * d)
    cmax = int(cfactor * d)
    for a in range(amax+1):
        for b in range(bmax+1):
            for c in range(cmax+1):
                if 2**a + 6**b + 9**c == rhs:
                    print(2**a + 6**b + 9**c, 11**d, (a,b,c,d))
                    solns.append((a,b,c,d))

  Posted by Larry on 2023-06-02 07:38:30
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (11)
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