• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

puzzle

Joined
11/28/06
Messages
31
Points
18
Product of three integers a, b, c equals 72, where every factor is positive integer. Find the integers a,b,c with the smallest sum.
With hit and trial, I can see the combination 2,6,6 or 3,3,8 gives the sum as 14.
Any other approach one can think of??

 
Look at the prime factorization of 72:
\(72 = 2^3*3^2\)

then choose the combination that sums to 13...3, 4, 6 is really \(3,2^2,2*3\)
 
Back
Top