vote up 2 vote down star
1

From http://projecteuler.net/index.php?section=problems&id=99

Comparing two numbers written in index form like 211 and 37 is not difficult, as any calculator would confirm that 211 = 2048 37 = 2187.

However, confirming that 632382518061 > 519432525806 would be much more difficult, as both numbers contain over three million digits.

Using base_exp.txt (right click and 'Save Link/Target As...'), a 22K text file containing one thousand lines with a base/exponent pair on each line, determine which line number has the greatest numerical value.

How might I approach this?

flag

please reformat so that your formulae appear correctly. – Alnitak Jan 13 at 10:39
@Alnitak: Done, I think. – ShreevatsaR Jan 25 at 22:41

4 Answers

vote up 5 vote down check

Not a full solution, but some ideas. You can use the following formula:

log(ax) = x*loga

The log10 can easily be estimated as number of digits. The log2 can easily be estimated by counting right shifts.

Based on the above you could narrow the list significantly. For the remaining numbers, you would have to do full calculations. Are math functions allowed in project Euler? If yes, it would be better to use logarithms.

link|flag
Here a log seems to be missing. – starblue Jan 13 at 11:29
+1. I translated it to Python and it works like a charm. Like so: reduce(lambda a, b: a if a[1] * log(a[0]) > b[1] * log(b[0]) else b, base_exp) – PEZ Jan 14 at 15:48
nice ~ should have seen the possibility of the x*logA form – koldfyre Feb 5 at 23:00
vote up 3 vote down

Since the logarithm is a monotonic function, instead of ax you could compare x * log a to find the maximum. You might need to take numerical precision into account, though.

link|flag
vote up 2 vote down

One possible approach would be to use logarithm identities (that is, ab is identical to eb * ln a). As a matter of fact, ab is identical to baseb * logbase a for all bases except 0 and 1.

link|flag
vote up 1 vote down

Comparing exponent * log(base) instead of base^exponent for each line in the file works for this problem without taking precision into account. This is certainly the best solution from a mathematical perspective, but I just wanted to point out that this isn't really necessary.

Another possible solution is to divide every number in the file by some constant (say 100,000) before performing the exponentiation on the now smaller numbers. Since you're comparing all of the values to each other, scaling them all down by a constant factor doesn't affect the final outcome.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.