Big O, what is the complexity of summing a series of n numbers?

后端 未结 10 717
伪装坚强ぢ
伪装坚强ぢ 2020-12-14 01:16

I always thought the complexity of:

1 + 2 + 3 + ... + n is O(n), and summing two n by n matrices would be O(n^2).

But today I read from a textbo

相关标签:
10条回答
  • 2020-12-14 01:50

    The big O notation can be used to determine the growth rate of any function.

    In this case, it seems the book is not talking about the time complexity of computing the value, but about the value itself. And n(n+1)/2 is O(n^2).

    0 讨论(0)
  • 2020-12-14 01:51

    n(n+1)/2 is the quick way to sum a consecutive sequence of N integers (starting from 1). I think you're confusing an algorithm with big-oh notation!

    If you thought of it as a function, then the big-oh complexity of this function is O(1):

    public int sum_of_first_n_integers(int n) {
      return (n * (n+1))/2;
    }
    

    The naive implementation would have big-oh complexity of O(n).

    public int sum_of_first_n_integers(int n) {
      int sum = 0;
      for (int i = 1; i <= n; i++) {
        sum += n;
      }
      return sum;
    }
    

    Even just looking at each cell of a single n-by-n matrix is O(n^2), since the matrix has n^2 cells.

    0 讨论(0)
  • 2020-12-14 01:51

    answer of sum of series of n natural can be found using two ways. first way is by adding all the numbers in loop. in this case algorithm is linear and code will be like this

     int sum = 0;
         for (int i = 1; i <= n; i++) {
         sum += n;
       }
     return sum;
    

    it is analogous to 1+2+3+4+......+n. in this case complexity of algorithm is calculated as number of times addition operation is performed which is O(n).

    second way of finding answer of sum of series of n natural number is direst formula n*(n+1)/2. this formula use multiplication instead of repetitive addition. multiplication operation has not linear time complexity. there are various algorithm available for multiplication which has time complexity ranging from O(N^1.45) to O (N^2). therefore in case of multiplication time complexity depends on the processor's architecture. but for the analysis purpose time complexity of multiplication is considered as O(N^2). therefore when one use second way to find the sum then time complexity will be O(N^2).

    here multiplication operation is not same as the addition operation. if anybody has knowledge of computer organisation subject then he can easily understand the internal working of multiplication and addition operation. multiplication circuit is more complex than the adder circuit and require much higher time than the adder circuit to compute the result. so time complexity of sum of series can't be constant.

    0 讨论(0)
  • 2020-12-14 01:53

    There really isn't a complexity of a problem, but rather a complexity of an algorithm.

    In your case, if you choose to iterate through all the numbers, the the complexity is, indeed, O(n).

    But that's not the most efficient algorithm. A more efficient one is to apply the formula - n*(n+1)/2, which is constant, and thus the complexity is O(1).

    0 讨论(0)
  • 2020-12-14 01:54

    Adding the first n numbers:

    Consider the algorithm:

    Series_Add(n)
    
       return n*(n+1)/2
    

    this algorithm indeed runs in O(|n|^2), where |n| is the length (the bits) of n and not the magnitude, simply because multiplication of 2 numbers, one of k bits and the other of l bits runs in O(k*l) time.

    Careful

    Considering this algorithm:

    Series_Add_pseudo(n):
       sum=0   
       for i= 1 to n:
          sum += i
       return sum
    

    which is the naive approach, you can assume that this algorithm runs in linear time or generally in polynomial time. This is not the case.

    The input representation(length) of n is O(logn) bits (any n-ary coding except unary), and the algorithm (although it is running linearly in the magnitude) it runs exponentially (2^logn) in the length of the input. This is actually the pseudo-polynomial algorithm case. It appears to be polynomial but it is not.

    You could even try it in python (or any programming language), for a medium length number like 200 bits.

    Applying the first algorithm the result comes in a split second, and applying the second, you have to wait a century...

    0 讨论(0)
  • 2020-12-14 01:55

    You are confusing complexity of runtime and the size (complexity) of the result.

    The running time of summing, one after the other, the first n consecutive numbers is indeed O(n).1

    But the complexity of the result, that is the size of “sum from 1 to n” = n(n – 1) / 2 is O(n ^ 2).


    1 But for arbitrarily large numbers this is simplistic since adding large numbers takes longer than adding small numbers. For a precise runtime analysis, you indeed have to consider the size of the result. However, this isn’t usually relevant in programming, nor even in purely theoretical computer science. In both domains, summing numbers is usually considered an O(1) operation unless explicitly required otherwise by the domain (i.e. when implementing an operation for a bignum library).

    0 讨论(0)
提交回复
热议问题