I found this problem interesting, namely we are given three values: $$\log_{1/3}{27}, \log_{1/5}{4}, \log_{1/2}{5}$$
We want to sort those values without using calculator. So I decided to work on them a little bit before comparing anything. Here is what I got:
First of all: $\log_{1/3}{27} = \log_{1/3}{3^3} = \log_{1/3}{(\frac{1}{3})^{-3}} = -3\\ \log_{1/5}{4} = \log_{1/5}{2^2} = 2 \cdot \log_{1/5}{2} = 2 \cdot \log_{5^{-1}}{2} = -2 \cdot \log_{5}{2}$
Since $\log_{5}{2} < 1, \text{then: } -2\cdot \log_{5}{2} > -2 $
And the third value: $\log_{1/2}{5} = \log_{2^{-1}}{5} = -\log_{2}{5}$
Since $2 < \log_{2}{5} < 3, \text{then: } -2 > -\log_{2}{5} > -3 $
This shows us that the first values is the smallest, then the third one and finally the second one: $$\log_{1/3}{27}, \log_{1/2}{5}, \log_{1/5}{4}$$
Is my approach correct or have I made some mistakes, can we get more accurate values for those logarithms without using calculator.