• Leo Uino@lemmy.sdf.org
    link
    fedilink
    arrow-up
    1
    ·
    11 months ago

    TDD

    const max12 = (x, y) => {
        if (x === 1 && y === 2) {
            return 2;
        } else if (x === 7 && y === 4) {
            return 7;
        } else {
            return x;
        }
    };
    
  • Eufalconimorph@discuss.tchncs.de
    link
    fedilink
    arrow-up
    1
    ·
    11 months ago
    #define max(x,y) ( { __auto_type __x = (x); __auto_type __y = (y); __x > __y ? __x : __y; })
    

    GNU C. Also works with Clang. Avoids evaluating the arguments multiple times. The optimizer will convert the branch into a conditional move, if it doesn’t I’d replace the ternary with the “bit hacker 2” version.

  • kewko@lemdro.id
    link
    fedilink
    English
    arrow-up
    0
    ·
    11 months ago

    Mathematician 2 kinda blew my mind, kinda obvious, just can’t believe I was never taught or thought about it.

    • Artyom@lemm.ee
      link
      fedilink
      arrow-up
      0
      ·
      11 months ago

      I’ve been staring at it for 10 minutes and I’m still not convinced it works.

      • uberrice@feddit.de
        link
        fedilink
        arrow-up
        0
        ·
        11 months ago

        Simple, really. Abs(x-y) is the difference between the two numbers, absolute, so positive value. So, adding abs(x-y) to the smaller of the two numbers turns it into the bigger number. Plus the bigger number, now you have 2 times the bigger number

    • neeeeDanke@feddit.de
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      11 months ago

      so 0.3 ~= 1-ln(2)=max(1-ln(2),1-ln(2)) = floor(ln(2*e^(1-ln(2)))) = floor(ln(2)+(1-ln(2))) = 1 ?

      That would bee engeneer 2, not Mathematician3 xD.

      Just out of curiostity, what was you Idea behind that?

      • driving_crooner@lemmy.eco.br
        link
        fedilink
        arrow-up
        0
        ·
        edit-2
        11 months ago

        Guess only work with integers, specially for the floor function that is going to give you an integer at the end everytime.

        Not my idea, learned it somewhere while doing college in an statistics class. The idea is that the exponential function grow really fast, so small difference on variables become extreme difference on the exponential, then the log function reverse the exponential, but because it grew more for the biggest variable it reverts to the max variable making the other variables the decimal part (this is why you need the floor function). I think is cool because works for any number of variables, unlike mathematician 2 who only work for 2 variables (maybe it can be generalized for more variables but I don’t think can be done).

        For a min fuction it can be use ceiling(-ln(e^-x + e^-y))

        • neeeeDanke@feddit.de
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          11 months ago

          to be fair it does seem to work for any two numbers where one is >1. As lim x,y–> inf ln(ex+ey) <= lim x,y --> inf ln(2 e^(max(x,y))) = max(x,y) + ln(2).

          I think is cool because works for any number of variables

          using the same proof as before we can see that: lim,x_i -->inf ln(sum_i/in I} e^(x_i)) <= ln(I|) +max{x_i | i /in I.

          So it would only work for at most [base of your log, so e<3 for ln] variables.

          • driving_crooner@lemmy.eco.br
            link
            fedilink
            arrow-up
            0
            ·
            11 months ago

            I don’t have a mathematical proof, but doing some experimental tests on excel, using multiple (more than 3) numers and using negative numbers (including only negative numbers) it works perfectly every time.

            • neeeeDanke@feddit.de
              link
              fedilink
              arrow-up
              0
              ·
              edit-2
              11 months ago

              Try (100,100,100,100,100,101) or 50 ones and a two, should result in 102 and 4 as a max respectively. I tried using less numbers, but the less numbers you use, the higher the values (to be exact less off a deviation(%-difference) between the values, resulting in higher numbers) have to be and wolframAlpha does not like 10^100 values so I stopped trying.

            • neeeeDanke@feddit.de
              link
              fedilink
              arrow-up
              0
              ·
              edit-2
              11 months ago

              thanks for looking it up:).

              I do think the upper bound on that page is wrong thought. Incedentally in the article itself only the lower bound is prooven, but in its sources this paper prooves what I did in my comment before as well:

              for the upper bound it has max +log(n) . (Section 2, eq 4) This lets us construct an example (see reply to your other comment) to disproove the notion about beeing able to calculate the max for many integers.

  • Fungah@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    11 months ago

    Reminded of how truly little I know about programming despite the time have spent doing it

    Ugh. I’ll never be any good.

    • TheHarpyEagle@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      11 months ago

      Listen, in industry programming (and for personal projects if you want to get them done), the thief is the way to go. By all means, challenge yourself to understand each of these functions, but 99% of day to day development will not look like this.