I found this equation: 8 n^2 = 64 n lgn and would like to solve it.
I rearranged it to get n = 8 lg n
I also think it can be expressed as 2^(n/8) = n/8
The problem came from 'Introduction to Algorithms' by Cormen etc. It states that:
1.2-2
Suppose we are comparing implementations of insertion sort and merge sort on the
same machine. For inputs of size n, insertion sort runs in 8n^2 steps, while merge
sort runs in 64n lg n steps. For which values of n does insertion sort beat merge
sort?
I rearranged it to get n = 8 lg n
I also think it can be expressed as 2^(n/8) = n/8
The problem came from 'Introduction to Algorithms' by Cormen etc. It states that:
1.2-2
Suppose we are comparing implementations of insertion sort and merge sort on the
same machine. For inputs of size n, insertion sort runs in 8n^2 steps, while merge
sort runs in 64n lg n steps. For which values of n does insertion sort beat merge
sort?