You are not logged in.
Pages: 1
(2*(n/2)*lg(n/2)) + n
= (n*lg(n/2))+n
= n*(lg n - 1) + n
How does (n*lg(n/2))+n simplify to n*(lg n - 1) + n? What happened to the n/2 that was inside? It has been a while since I last worked with log.
Offline
Hi;
Is this the problem?
Last edited by bobbym (2013-02-25 08:51:47)
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Yeah.
Offline
I am getting:
Last edited by bobbym (2013-02-25 10:10:52)
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Hi genericname
lg(a/b)=lg(a)-lg(b) for any a and b for which the expression is defined.
So, lg(n/2)=lg(n)-lg(2)=lg(n)-1, assuming the logarithm is with base 2.
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Why would the log be to the base two?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Because then the step makes sense. We will have have to wait for the OP's answer.
And besides, the use of n and lg reminds me of comp. analysis.
Last edited by anonimnystefy (2013-02-25 14:42:40)
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
A very good answer!
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Ah, thank you. It was base 2, sorry for the confusion.
Offline
No problem and you're welcome!
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Pages: 1