I am trying to do the following:
theMin = BaseForm[16^^1000,10]
theMax = BaseForm[16^^10000,10]
N[20*Log10[theMax/theMin]]
However this results in an error because Head[theMin] is BaseForm. How can I convert "theMin" and "theMax" from the "display BaseForm" formats into an integer format that can be used for computation?
What I want to get is the following
N[20*Log10[65536/4096]]
24.0824