Puzzle # 14
Using the digits 1 up to 9, two numbers must be made. The product of these two numbers should be as large as possible. All digits must be used exactly once
- By Multiplying only Two Numbers say A & B, Maximum Value needs to be generated.
- These two numbers A and B should cover all the digits from 1 to 9.
Solution
Remember two rules to generate Max Product.
- Difference of two numbers should be minimum to attain Max Product
- Higher value digits be placed in Most significant side of Number i.e., Let us say number A is a 5 digit number and assume it's value to be A=abcde
- In above a,b,c,d,e are digits.
- Possible digit values are a > b > c > d > e
A = 96521
B = 8743
Note : In above while calculating the Numbers, A Snake structure is followed starting from 9 as shown below :
Back to