Please, could you help me with the question below. Demonstrate that O(log n^k) = O(log n):
2026-03-27 14:21:22.1774621282
Comparing two Big O notations
45 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)).