Building a Pc for Calcuation

Solution
if you're talking about floating point calculations, look into ways to employ the GPU's processor as it is optimized for this and thus many times (100x?) faster than the general purpose CPU.

for other kinds of calculations, it's probably all about clock speed unless the app doing the calculations can take advantage of multiple cores in parallel.
if you're talking about floating point calculations, look into ways to employ the GPU's processor as it is optimized for this and thus many times (100x?) faster than the general purpose CPU.

for other kinds of calculations, it's probably all about clock speed unless the app doing the calculations can take advantage of multiple cores in parallel.
 
Solution