• _taem@discuss.tchncs.de
    link
    fedilink
    arrow-up
    16
    ·
    2 days ago

    I’m not a native speaker, but would agree that it sounds imprecise. To my understanding, that’s a polynomial reduction of the time (O(n^2) to O(n): quadratic to linear) and not an exponential speed-up (O(2^n) to O(n): exponential to linear). 🤷 Colloquially, “exponentially” seems to be used synonymously to “tremendously” or similar.

    • Giooschi@lemmy.world
      link
      fedilink
      English
      arrow-up
      7
      ·
      2 days ago

      and not an exponential speed-up (O(2^n) to O(n): exponential to linear)

      Note that you can also have an exponential speed-up when going from O(n) (or O(n^2) or other polynomial complexities) to O(log n). Of course that didn’t happen in this case.