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

Home > Just Math
Prime digit cryptography (Posted on 2025-02-19) Difficulty: 3 of 5
      * * *
        * *
  ---------
    * * * *
  * * * *
  ---------
  * * * * *
In this cryptarithm both the digits and operations have been removed. Each digit is a prime (2, 3, 5, or 7). Give the correct arrangement of digits and the two operations.

No Solution Yet Submitted by Danish Ahmed Khan    
Rating: 5.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution computer solution | Comment 1 of 3
I assumed that the operation was multiplication, as that is what the layout looks like, and that, while the digits are represented by asterisks, the operator for multiplication was merely left out, as, if the multiplication were by a single digit there would be no second line of partial product.

Further, though addition is involved, the absence of a sign for addition is not unusual for this type of problem. It hasn't really been removed, rather it is never really present.

This does work out as a unique multiplication algorithm presentation:

     775
      33
   -----   
    2325
   2325
   -----
   25575
   
found by:   
   
clearvars
t='2357';

for a1=[2 3 5 7]
  for a2=[2 3 5 7]
    for a3=[2 3 5 7]
      a=100*a1+10*a2+a3;
for b1=[2 3 5 7]  
  for b2=[2 3 5 7]
    b=10*b1+b2;
p1=b2*a;
p2=b1*a;
p=a*b;
tst=[num2str(p1) num2str(p2) num2str(p)];
v=ismember(tst,t);
if v
  disp(a)
  disp(b)
  disp(p1)
  disp(p2)
  disp(p)
end
  end
end
    end
  end
end   

  Posted by Charlie on 2025-02-19 09:07:42
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 (4)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

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