Base formula: T(n)=aT(n/b)+f(n)
Our formula: T(n)=2T(n/2)+n0.75
The Master Theorem is used to take a "divide-and-conquer" algorithm, and compare the "combine step" to the original problem (and determine which takes more of the runtime).
a = 2
b = 2
f(n) = n0.75
Thus, the comparison is between nlog22 and n0.75
nlog22 = n
n grows faster than n0.75 which means the former dominates the runtime. Thus:
Answer = Θ(n)
a=2; b=2;
according to the master theorem;
log22 > 0.75
so, the answer is O(nlog22)=O(n)