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

Home > General
It is not 49 (Posted on 2023-08-26) Difficulty: 3 of 5
If FINANCING is SEVEN^K
and AFGVKGA=FIVE^K
then what was Ady doing by posting this question?

Answer: 912084

What is the answer?

See The Solution Submitted by Ady TZIDON    
Rating: 4.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts Different method for solving 1st alphametic | Comment 2 of 3 |
Just solving the first alphametic:

FINANCING is SEVEN^K
A 5-digit number raised to an integer power yields a 9 digit number:  K must be 2
Further, SEVEN must be between 10000 and 31622.
The following program simply rules out possible values based on the patterns of the letters.
For example the 2nd and 4th digit of SEVEN are the same, and
the 2nd and 7th digit of FINANCING are the same.

FINANCING is SEVEN^ K
308986084 = 17578 ^ 2
--------------------
for i in range(10000, 31623):
    s = str(i)
    if s[4] == s[3]:
        continue
    if s[1] != s[3]:
        continue
    a = str(i*i)
    if a[1] != a[6]:
        continue
    if a[2] != a[4]:
        continue
    if a[2] != a[7]:
        continue
    if s[4] != a[2]:
        continue
    print(i*i, '=', i,'^ 2')

  Posted by Larry on 2023-08-26 08:52:31
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 (10)
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