I was doing the exercise and I got stuck -.-. This is the task I have to do.
The solution: I dont get the step of the yellow one. I tried to understand but I lack of the knowledge of the logarithm. Can you explaine

Thanks for your explanation!
keep in mind that log ab = log a + log b also log (1/a) = - log a
So when you have 2(n/2) log(n/2) you can write log(n/2) as log(1/2 x n) which using log ab = log a + log b equals log(n) + log(1/2)
2(n/2) log(n/2) = 2(n/2) (log n + log(1/2)) = n(log n + log(1/2))
Also log (1/a) = - log a, and hence log(1/2) = - log 2
That is how you get
2(n/2) log(n/2) + n = 2(n/2) (log n + log(1/2)) + n = n(log n + log(1/2))
= n(log n - log 2 ) + n
Since log 2 = 1 in base 2 you will have n(log n - log 2 ) + n = n(log n - 1) + n = n lg n
log(a*b) = log(a) + log(b)and consequentlylog(1/a) = -log(a)log(n/2) = log(n) - log(2). I don't understand what is unclear