How to compare two huge numbers with nested exponentials?

  • #1
24
0
Let's say we have two numbers represented as a "tower" of exponentials, a^b^c^d and w^x^y^z (powers calculated right to left) and we want to compare them, not necessarily calculating their values. Their values are so huge, they can't be represented on a computer or calculator. Is it possible to use logarithms to compare them? I know that it is possible for a simple case, say, a^b and x^y. We can apply log to both sides and then compare b log a and y log x. But what about nested powers? We can represent log(a^b^c) as b^c log a. But what if b^c is still huge. Can we continue and end up with something like c* log(b) * log(a)? A quick test shows that this is probably not going to work. Any ideas? Thanks
 
  • #2
...We can represent log(a^b^c) as b^c log a. But what if b^c is still huge. Can we continue and end up with something like c* log(b) * log(a)? A quick test shows that this is probably not going to work. Any ideas? Thanks
log(bc⋅log(a)) = c⋅log(b)+log(log(a)) , not what you have.
 
  • #3
log(bc⋅log(a)) = c⋅log(b)+log(log(a)) , not what you have.
Ah, right, thank you. So do you think the general approach is otherwise correct?

Let's say in c⋅log(b)+log(log(a)) c is not just c but to the power of d. I am not sure, would I need to apply log to the sum? In other words, is there a general approach to get rid of all the nested exponentials by applying log consecutively? I am not sure what to do here:
log( cd⋅log(b)+log(log(a)))
 
Last edited:
  • #4
Ah, right, thank you. So do you think the general approach is otherwise correct?

Let's say in c⋅log(b)+log(log(a)) c is not just c but to the power of d. I am not sure, would I need to apply log to the sum? In other words, is there a general approach to get rid of all the nested exponentials by applying log consecutively? I am not sure what to do here:
log( cd⋅log(b)+log(log(a)))
Once you have that sum, taking the log doesn't help.
 

Suggested for: How to compare two huge numbers with nested exponentials?

Replies
7
Views
986
Replies
5
Views
1K
Replies
5
Views
811
Replies
2
Views
904
Replies
4
Views
413
Replies
13
Views
812
Replies
11
Views
628
Back
Top