
Based on this table, is it generally going to be true that for two functions whose most "significant" terms are of the same order that they will be big-Theta each other? And a function of order lower on this table will be big-O ones above it?
Here is the context of my question if it helps:

It is not true that all functions corresponding to the same entry in the table will be $\Theta$ of each other. In particular, $a^x = O(b^x)$ if and only if $|a| \leq |b|$. I'm not sure about the L-notation bit.
It is true, however, that $f = O(g)$ if $g$ is lower down on the table.