Please, could you help me with the question below. Demonstrate that O(log n^k) = O(log n):
2026-05-15 01:51:01.1778809861
Comparing two Big O notations
48 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Using properties of logs, log(n^k) can easily be transformed into klog(n). Then, because constant factors 'small out' as it were when using big O notation, O(klog(n))= O(log(n)).
Thus, O(log(n^k)) = O(klog(n)) = O(log(n)).