Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Math Puzzle (SOLVED by harold aptroot!)

Math Puzzle (SOLVED by harold aptroot!)

Scheduled Pinned Locked Moved The Lounge
csscomquestion
41 Posts 8 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A AspDotNetDev

    Sorry folks, harold aptroot beat you. Better luck next time. :) So a coworker of mine was just converting between different representations for the day of the week. In one system 0 means Sunday and in the other 7 means Sunday (all other days are equal between both systems). He was able to solve it using a simple if statement, but that got me thinking about a mathematical way of solving that (just for fun). I came up with:

    newDay = ((oldDay + 2) / (oldDay + 1) - 1) * 7 + oldDay

    That makes new day equal to the old day, except the 0 gets turned into a 7. However, it only works for non-negative integers. Any value less than -1 will be incorrect and -1 will cause a division by 0, which for the sake of the puzzle I am disallowing. Your goal is to create an equation that will handle negatives correctly too. So, the input and output would look like this:

    Old Value

    New Value

    -∞

    -∞

    ...

    ...

    -2

    -2

    -1

    -1

    0

    7

    1

    1

    2

    2

    ...

    ...

    ∞

    ∞

    You are only allowed multiplication, addition, subtraction, negation, integer division, and parentheses for grouping. Assume "/" truncates the result (so, -2.5 becomes -2 and 2.5 becomes 2) and "\" rounds toward negative infinity (so, -2.5 becomes -3 and 2.5 becomes 2). Division by 0 is not allowed. The first one to get a correct solution gets 5 kudos points. Have fun. :) P.S. This is not a homework question. I graduated years ago. Though, teachers, feel free to snag this little puzzle for your math students (or programming students, as this is more a logic puzzle that just happens to employ very basic math). If nobody has solved this by the time I get home in a couple hours, I'll go ahead and give it a go myself then post the answer here (assuming I can figure it out).

    [Forum Guidelines]

    modified on Tuesday, April 20, 2010 10:16 PM

    G Offline
    G Offline
    Gwenio
    wrote on last edited by
    #9

    It cannot be done within the given specifications, as the function is discontinuous.

    A 1 Reply Last reply
    0
    • L Lost User

      ((x - 1) / 2 - (x - 1) \ 2) * ((-(x + 1) / 2) - (-(x + 1) \ 2)) * 7 + x edit: forgot negation - oops

      A Offline
      A Offline
      AspDotNetDev
      wrote on last edited by
      #10

      Dang, I was just about to tell you that you were incorrect. Alright, let me get the pen and paper out again... please hold...

      [Forum Guidelines]

      1 Reply Last reply
      0
      • G Gwenio

        It cannot be done within the given specifications, as the function is discontinuous.

        A Offline
        A Offline
        AspDotNetDev
        wrote on last edited by
        #11

        Discontinuous functions are quite possible using the operators I've allowed. In fact, I demonstrated one in my original post.

        [Forum Guidelines]

        G 1 Reply Last reply
        0
        • A AspDotNetDev

          Sorry folks, harold aptroot beat you. Better luck next time. :) So a coworker of mine was just converting between different representations for the day of the week. In one system 0 means Sunday and in the other 7 means Sunday (all other days are equal between both systems). He was able to solve it using a simple if statement, but that got me thinking about a mathematical way of solving that (just for fun). I came up with:

          newDay = ((oldDay + 2) / (oldDay + 1) - 1) * 7 + oldDay

          That makes new day equal to the old day, except the 0 gets turned into a 7. However, it only works for non-negative integers. Any value less than -1 will be incorrect and -1 will cause a division by 0, which for the sake of the puzzle I am disallowing. Your goal is to create an equation that will handle negatives correctly too. So, the input and output would look like this:

          Old Value

          New Value

          -∞

          -∞

          ...

          ...

          -2

          -2

          -1

          -1

          0

          7

          1

          1

          2

          2

          ...

          ...

          ∞

          ∞

          You are only allowed multiplication, addition, subtraction, negation, integer division, and parentheses for grouping. Assume "/" truncates the result (so, -2.5 becomes -2 and 2.5 becomes 2) and "\" rounds toward negative infinity (so, -2.5 becomes -3 and 2.5 becomes 2). Division by 0 is not allowed. The first one to get a correct solution gets 5 kudos points. Have fun. :) P.S. This is not a homework question. I graduated years ago. Though, teachers, feel free to snag this little puzzle for your math students (or programming students, as this is more a logic puzzle that just happens to employ very basic math). If nobody has solved this by the time I get home in a couple hours, I'll go ahead and give it a go myself then post the answer here (assuming I can figure it out).

          [Forum Guidelines]

          modified on Tuesday, April 20, 2010 10:16 PM

          L Offline
          L Offline
          Luc Pattyn
          wrote on last edited by
          #12

          y=x+7*(1+x-(x+x+1)/2)*(1-x+(x+x-1)/2)

          :)

          Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


          Prolific encyclopedia fixture proof-reader browser patron addict?
          We all depend on the beast below.


          modified on Tuesday, April 20, 2010 10:12 PM

          A 1 Reply Last reply
          0
          • L Lost User

            ((x - 1) / 2 - (x - 1) \ 2) * ((-(x + 1) / 2) - (-(x + 1) \ 2)) * 7 + x edit: forgot negation - oops

            A Offline
            A Offline
            AspDotNetDev
            wrote on last edited by
            #13

            This seems to be correct. Very clever. Looks like you are using the fact that \ and / will only ever differ by 1. Since you flip flop so rounding will occur in the same direction for at least one of the terms to the left and right of the multiply, at least one section of the equation will turn out to be 0, which propogates to make each other terms 0. And you never divide by a variable, so that avoids a divide by 0. A 5 well earned!

            [Forum Guidelines]

            L 1 Reply Last reply
            0
            • A AspDotNetDev

              Discontinuous functions are quite possible using the operators I've allowed. In fact, I demonstrated one in my original post.

              [Forum Guidelines]

              G Offline
              G Offline
              Gwenio
              wrote on last edited by
              #14

              For some reason I was stuck on thinking in terms of normal math. Still, you should really make sure such a problem has an answer before presenting it as a puzzle.

              A 1 Reply Last reply
              0
              • L Luc Pattyn

                y=x+7*(1+x-(x+x+1)/2)*(1-x+(x+x-1)/2)

                :)

                Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                Prolific encyclopedia fixture proof-reader browser patron addict?
                We all depend on the beast below.


                modified on Tuesday, April 20, 2010 10:12 PM

                A Offline
                A Offline
                AspDotNetDev
                wrote on last edited by
                #15

                Good choice to remove the decimals... I can't recall if I stated that in the puzzle, but that was part of the requirement I had in my head. I don't have the time to check your solution, but it looks like harold aptroot beat you anyway. Yours does look a little less tricky (I too was thinking of using "2 * i + 1"), so kudos for possibly finding a simpler solution. :)

                [Forum Guidelines]

                L 1 Reply Last reply
                0
                • A AspDotNetDev

                  Good choice to remove the decimals... I can't recall if I stated that in the puzzle, but that was part of the requirement I had in my head. I don't have the time to check your solution, but it looks like harold aptroot beat you anyway. Yours does look a little less tricky (I too was thinking of using "2 * i + 1"), so kudos for possibly finding a simpler solution. :)

                  [Forum Guidelines]

                  L Offline
                  L Offline
                  Luc Pattyn
                  wrote on last edited by
                  #16

                  no need for \! :)

                  Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                  Prolific encyclopedia fixture proof-reader browser patron addict?
                  We all depend on the beast below.


                  A 1 Reply Last reply
                  0
                  • A AspDotNetDev

                    This seems to be correct. Very clever. Looks like you are using the fact that \ and / will only ever differ by 1. Since you flip flop so rounding will occur in the same direction for at least one of the terms to the left and right of the multiply, at least one section of the equation will turn out to be 0, which propogates to make each other terms 0. And you never divide by a variable, so that avoids a divide by 0. A 5 well earned!

                    [Forum Guidelines]

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #17

                    Yay :) Usually trying to solve these problems at 4 am doesn't work out so well for me lol

                    A 1 Reply Last reply
                    0
                    • G Gwenio

                      For some reason I was stuck on thinking in terms of normal math. Still, you should really make sure such a problem has an answer before presenting it as a puzzle.

                      A Offline
                      A Offline
                      AspDotNetDev
                      wrote on last edited by
                      #18

                      Gwenio wrote:

                      you should really make sure such a problem has an answer before presenting it as a puzzle

                      You might want to tell these guys that. ;) Also, I intuited that it was possible. If it wasn't, then a proof of why it wasn't would have been equally valid. :)

                      [Forum Guidelines]

                      C 1 Reply Last reply
                      0
                      • L Lost User

                        Yay :) Usually trying to solve these problems at 4 am doesn't work out so well for me lol

                        A Offline
                        A Offline
                        AspDotNetDev
                        wrote on last edited by
                        #19

                        4AM may not be such a bad time for you. You have earned a place on my bookmark list. :)

                        [Forum Guidelines]

                        1 Reply Last reply
                        0
                        • L Luc Pattyn

                          no need for \! :)

                          Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                          Prolific encyclopedia fixture proof-reader browser patron addict?
                          We all depend on the beast below.


                          A Offline
                          A Offline
                          AspDotNetDev
                          wrote on last edited by
                          #20

                          Not bad. I added that operator because I wasn't sure it was possible without it. If you have indeed done it without, then great work. :)

                          [Forum Guidelines]

                          L 1 Reply Last reply
                          0
                          • A AspDotNetDev

                            Not bad. I added that operator because I wasn't sure it was possible without it. If you have indeed done it without, then great work. :)

                            [Forum Guidelines]

                            L Offline
                            L Offline
                            Luc Pattyn
                            wrote on last edited by
                            #21

                            it is only / one needs, since that one has a singularity at zero, hence it allows to construct C-like functions (resulting in 0 or 1) like x>0 and x<0, x>=0 and x<=0, and therefore also x==0. :)

                            Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                            Prolific encyclopedia fixture proof-reader browser patron addict?
                            We all depend on the beast below.


                            P 1 Reply Last reply
                            0
                            • A AspDotNetDev

                              Calm down there cowboy. My "stated usage" was just how I thought up this idea. This is just a fun math puzzle to occupy your time should you choose to let it.

                              PIEBALDconsult wrote:

                              it's just integer division

                              Not sure I agree (mod is the remainder from the division), but no shorthand allowed... show your work please. :)

                              [Forum Guidelines]

                              P Offline
                              P Offline
                              Phil Martin
                              wrote on last edited by
                              #22

                              aspdotnetdev wrote:

                              PIEBALDconsult wrote: it's just integer division Not sure I agree (mod is the remainder from the division),

                              Sure it is, since your division rounds: a % b = a - b * (a / b) e.g. 12 % 5 = 12 - 5 * (12 / 5) 2 = 12 - 5 * 2 2 = 2

                              L A P 3 Replies Last reply
                              0
                              • P Phil Martin

                                aspdotnetdev wrote:

                                PIEBALDconsult wrote: it's just integer division Not sure I agree (mod is the remainder from the division),

                                Sure it is, since your division rounds: a % b = a - b * (a / b) e.g. 12 % 5 = 12 - 5 * (12 / 5) 2 = 12 - 5 * 2 2 = 2

                                L Offline
                                L Offline
                                Luc Pattyn
                                wrote on last edited by
                                #23

                                absolutely, and furthermore PIEBALD will claim the use of the C/C++ pre-processor to introduce and define new operators. :)

                                Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                                Prolific encyclopedia fixture proof-reader browser patron addict?
                                We all depend on the beast below.


                                A P P 3 Replies Last reply
                                0
                                • P Phil Martin

                                  aspdotnetdev wrote:

                                  PIEBALDconsult wrote: it's just integer division Not sure I agree (mod is the remainder from the division),

                                  Sure it is, since your division rounds: a % b = a - b * (a / b) e.g. 12 % 5 = 12 - 5 * (12 / 5) 2 = 12 - 5 * 2 2 = 2

                                  A Offline
                                  A Offline
                                  AspDotNetDev
                                  wrote on last edited by
                                  #24

                                  Thanks for the info. :)

                                  [Forum Guidelines]

                                  1 Reply Last reply
                                  0
                                  • L Luc Pattyn

                                    absolutely, and furthermore PIEBALD will claim the use of the C/C++ pre-processor to introduce and define new operators. :)

                                    Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                                    Prolific encyclopedia fixture proof-reader browser patron addict?
                                    We all depend on the beast below.


                                    A Offline
                                    A Offline
                                    AspDotNetDev
                                    wrote on last edited by
                                    #25

                                    Just so long as he shows his work. :)

                                    [Forum Guidelines]

                                    1 Reply Last reply
                                    0
                                    • L Luc Pattyn

                                      absolutely, and furthermore PIEBALD will claim the use of the C/C++ pre-processor to introduce and define new operators. :)

                                      Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                                      Prolific encyclopedia fixture proof-reader browser patron addict?
                                      We all depend on the beast below.


                                      P Offline
                                      P Offline
                                      Phil Martin
                                      wrote on last edited by
                                      #26

                                      C++ Preprocessor? That's so kitsch. Prolog operators all the way!

                                      1 Reply Last reply
                                      0
                                      • L Luc Pattyn

                                        it is only / one needs, since that one has a singularity at zero, hence it allows to construct C-like functions (resulting in 0 or 1) like x>0 and x<0, x>=0 and x<=0, and therefore also x==0. :)

                                        Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                                        Prolific encyclopedia fixture proof-reader browser patron addict?
                                        We all depend on the beast below.


                                        P Offline
                                        P Offline
                                        Phil Martin
                                        wrote on last edited by
                                        #27

                                        Man, all that money wasted on finding the Higgs Boson, when it was hiding in the divide by zero all along!

                                        L 1 Reply Last reply
                                        0
                                        • P Phil Martin

                                          Man, all that money wasted on finding the Higgs Boson, when it was hiding in the divide by zero all along!

                                          L Offline
                                          L Offline
                                          Luc Pattyn
                                          wrote on last edited by
                                          #28

                                          it is not only at zero, it is everywhere, we are just too blind to see it. :)

                                          Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


                                          Prolific encyclopedia fixture proof-reader browser patron addict?
                                          We all depend on the beast below.


                                          A 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups