I am attempting to work out, by using a manual method, how to apply the floor() and ceiling() functions to log2(2096) (2096 is used as an example).
My understanding is this (and I am very much a beginner):
First, by using a scientific calculator calculating what log2(2096) is by; 3.32 * log(2096) = 11.027
And then from here I can see that that floor = 11 and ceiling = 12 so ceiling(x) = floor(x) +1
But when I review my answer, I am incorrect (usually due to how I calculate log2(2096). How do I remedy this?