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. Should Devs know how maths works?

Should Devs know how maths works?

Scheduled Pinned Locked Moved The Lounge
sharepointquestiondiscussion
95 Posts 45 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.
  • D Danny Martin

    What I'm saying here, and is being echoed by others, is that you don't need to know that a computer uses AND / XOR to do addition in order to write a function which adds two numbers. I believe there are many devs out there that don't know, don't need to know and quite frankly could care less. You don't need to know how to write a for next loop in assembler in order to write one in another, higher level language, but if you 'do' know how it works at the machine level I think it gives you a greater insight into how those higher level languages do their thing. it certainly helped me to understand what was going on under the hood. Danny

    S Offline
    S Offline
    Slacker007
    wrote on last edited by
    #44

    Danny Martin wrote:

    You don't need to know how to write a for next loop in assembler in order to write one in another, higher level language, but if you 'do' know how it works at the machine level I think it gives you a greater insight into how those higher level languages do their thing. it certainly helped me to understand what was going on under the hood.

    Well said. :thumbsup:

    -- ** You don't hire a handyman to build a house, you hire a carpenter. ** Jack of all trades and master of none.

    1 Reply Last reply
    0
    • D Danny Martin

      What I'm saying here, and is being echoed by others, is that you don't need to know that a computer uses AND / XOR to do addition in order to write a function which adds two numbers. I believe there are many devs out there that don't know, don't need to know and quite frankly could care less. You don't need to know how to write a for next loop in assembler in order to write one in another, higher level language, but if you 'do' know how it works at the machine level I think it gives you a greater insight into how those higher level languages do their thing. it certainly helped me to understand what was going on under the hood. Danny

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

      Certainly. The closer you get to the hardware, the more you must know. If you happen to work on, let's say, a driver for some piece of hardware, then it becomes absolutely essential. Then think about what you do every day with integer types. Type casts, conversions, signed vs. unsigned or, when importing binary data, little endian vs. big endian. How is someone supposed to deal with all the little pitfalls involved with those things without knowing anything about binary arithmatic? Nice frameworks and programming languages cannot protect you from everything.

      "I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
      I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011

      D 1 Reply Last reply
      0
      • S Slacker007

        Are we debating algorithms or binary math? Are we debating logic or 0's or 1's? I can't tell anymore. ...I'm not angry. However, you sound like we all "need" to know this stuff because "you" know it and I am just saying that is plain silly.

        -- ** You don't hire a handyman to build a house, you hire a carpenter. ** Jack of all trades and master of none.

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

        It does not matter what I know or not. I just say that those things are so fundamental that you must deal with them, like it or not. The only alternative would be to become a cargo cult programmer who strictly follows rules from people who (hopefully) know what they are talking about. I prefer not to end this way.

        "I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
        I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011

        1 Reply Last reply
        0
        • L Lost User

          Certainly. The closer you get to the hardware, the more you must know. If you happen to work on, let's say, a driver for some piece of hardware, then it becomes absolutely essential. Then think about what you do every day with integer types. Type casts, conversions, signed vs. unsigned or, when importing binary data, little endian vs. big endian. How is someone supposed to deal with all the little pitfalls involved with those things without knowing anything about binary arithmatic? Nice frameworks and programming languages cannot protect you from everything.

          "I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
          I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011

          D Offline
          D Offline
          Danny Martin
          wrote on last edited by
          #47

          CDP1802 wrote:

          The closer you get to the hardware, the more you must know. If you happen to work on, let's say, a driver for some piece of hardware, then it becomes absolutely essential.

          I agree, but I was just talking generally...

          CDP1802 wrote:

          Nice frameworks and programming languages cannot protect you from everything.

          There, however, I disagree. You can, for example, be a very successful web developer and not care about the difference between an integer and string in some instances, take PHP... I feel that knowing the fundamental stuff is advantageous, but it's by no means essential to work in a higher level language that does a majority of the work for you. Many replies here seem to bear that point out pretty well. Danny

          L 1 Reply Last reply
          0
          • D Danny Martin

            CDP1802 wrote:

            The closer you get to the hardware, the more you must know. If you happen to work on, let's say, a driver for some piece of hardware, then it becomes absolutely essential.

            I agree, but I was just talking generally...

            CDP1802 wrote:

            Nice frameworks and programming languages cannot protect you from everything.

            There, however, I disagree. You can, for example, be a very successful web developer and not care about the difference between an integer and string in some instances, take PHP... I feel that knowing the fundamental stuff is advantageous, but it's by no means essential to work in a higher level language that does a majority of the work for you. Many replies here seem to bear that point out pretty well. Danny

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

            By my experience that also accounts for a few new posts in the coding horrors section, usually committed by somebody who is totally unaware of what's so horrible about it. And, my personal favorite, experienced developers quickly looking the other way and leaving the dirty work to that rambling idiot who keeps ranting about how important that stuff is.

            "I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
            I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011

            K 1 Reply Last reply
            0
            • D Danny Martin

              Hi Guys, I am doing a bit of research and was just wondering... How many programmers know how a computer does math? We take it for granted that those beige boxes (or white, shiny ones in my case :o) know that 2 + 2 = 4, but how many devs know how they work it out? How many care? Should we know? If you know, how did you find out, and when / under what circumstances etc. I learned Boolean Logic in the nineties while working with 68k assembler, and it was a real eye opener. What are the teams thoughts? Danny

              M Offline
              M Offline
              Member 96
              wrote on last edited by
              #49

              No. I knew once back in the day when I cut my teeth doing assembly programming and a bit before that when I did a little electronics as a hobby and played with logic chips, these days as a developer using any modern language it's *utterly* irrelevant and if someone wants to take it up as a hobby good on them but that's it.


              There is no failure only feedback

              1 Reply Last reply
              0
              • M Mike Hankey

                I love the smell of a hex dump in the morning.

                "Life can only be understood backwards, but it must be lived forward." Kierkegaard, Søren

                S Offline
                S Offline
                Steve Mayfield
                wrote on last edited by
                #50

                punch card chad on my oatmeal :laugh:

                Steve _________________ I C(++) therefore I am

                J 1 Reply Last reply
                0
                • C Chris Maunder

                  They should also know how a computer works, and how the VM or runtime they are targeting works.

                  cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

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

                  Chris Maunder wrote:

                  They should also know how a computer works, and how the VM or runtime they are targeting works.

                  ...and the quaulity and quantity and specific type of mud to use in the pies.

                  Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So I had to leave the place as soon as possible." - Mr.Prakash One Fine Saturday. 24/04/2004

                  C 1 Reply Last reply
                  0
                  • L Lost User

                    Chris Maunder wrote:

                    They should also know how a computer works, and how the VM or runtime they are targeting works.

                    ...and the quaulity and quantity and specific type of mud to use in the pies.

                    Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So I had to leave the place as soon as possible." - Mr.Prakash One Fine Saturday. 24/04/2004

                    C Offline
                    C Offline
                    Chris Maunder
                    wrote on last edited by
                    #52

                    Well, obviously.

                    cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

                    L 1 Reply Last reply
                    0
                    • C Chris Maunder

                      Well, obviously.

                      cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

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

                      Might end up getting a job down here in Canberra with the customer I'm currently working on site with. If it looks more certain (and it is looking more than promising at the moment) I will need to have a chat with you about the areas (if any) to avoid living and any other Canberra advise you may have.

                      Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So I had to leave the place as soon as possible." - Mr.Prakash One Fine Saturday. 24/04/2004

                      C 1 Reply Last reply
                      0
                      • D Danny Martin

                        Hi Guys, I am doing a bit of research and was just wondering... How many programmers know how a computer does math? We take it for granted that those beige boxes (or white, shiny ones in my case :o) know that 2 + 2 = 4, but how many devs know how they work it out? How many care? Should we know? If you know, how did you find out, and when / under what circumstances etc. I learned Boolean Logic in the nineties while working with 68k assembler, and it was a real eye opener. What are the teams thoughts? Danny

                        Y Offline
                        Y Offline
                        YDaoust
                        wrote on last edited by
                        #54

                        Danny, I see two circumstances when programmers need to be aware of the inner workings of computer arithmetic: - when they face the limitations of the finite representation (know about overflow and inaccuracies resulting from trunction issues), - when they need to use optimization "tricks" related to the specifics of the representation (such as trading a shift for a division by a power of 2). Besides that, being cultured never harms, does it ? For the brave ones: http://www.validlab.com/goldberg/paper.pdf

                        1 Reply Last reply
                        0
                        • D Danny Martin

                          What I'm saying here, and is being echoed by others, is that you don't need to know that a computer uses AND / XOR to do addition in order to write a function which adds two numbers. I believe there are many devs out there that don't know, don't need to know and quite frankly could care less. You don't need to know how to write a for next loop in assembler in order to write one in another, higher level language, but if you 'do' know how it works at the machine level I think it gives you a greater insight into how those higher level languages do their thing. it certainly helped me to understand what was going on under the hood. Danny

                          L Offline
                          L Offline
                          Lazar Videnov
                          wrote on last edited by
                          #55

                          You may not need that low level stuff in 99% of your working life but it is the most fundamental thing that our business is based on. So, just to be a good professional you need to know it and understand it well (besides it's not that complex). It is just a matter of being capable, well educated about your profession and reduce the (high) level of ignorance in our society today.

                          L 1 Reply Last reply
                          0
                          • D Danny Martin

                            What I'm saying here, and is being echoed by others, is that you don't need to know that a computer uses AND / XOR to do addition in order to write a function which adds two numbers. I believe there are many devs out there that don't know, don't need to know and quite frankly could care less. You don't need to know how to write a for next loop in assembler in order to write one in another, higher level language, but if you 'do' know how it works at the machine level I think it gives you a greater insight into how those higher level languages do their thing. it certainly helped me to understand what was going on under the hood. Danny

                            N Offline
                            N Offline
                            n podbielski
                            wrote on last edited by
                            #56

                            Danny Martin wrote:

                            computer uses AND / XOR

                            I think that on x86 it would be few stack operation (push and pops instructions), one call, one add and one ret :)

                            In soviet Russia code debugs You!

                            1 Reply Last reply
                            0
                            • L Lost User

                              Danny Martin wrote:

                              but how many devs know how they work it out?

                              Ideally a dev would learn to do additions in a different representation than decimal.

                              Danny Martin wrote:

                              How many care? Should we know?

                              It's not required knowledge for the average LOB-app. One can work with dates for years without knowing what an epoch is, or the difference between a directory and a folder.

                              Danny Martin wrote:

                              If you know, how did you find out

                              The Library :)

                              Bastard Programmer from Hell :suss:

                              N Offline
                              N Offline
                              n podbielski
                              wrote on last edited by
                              #57

                              Eddy Vluggen wrote:

                              Ideally a dev would learn to do additions in a different representation than decimal.

                              I think it's not really dev work. I learned this in high school (with electronics specialization) on microprocessors classes. And again on university on classes about assembler x86 and 51 miprocessors. So this is really another job. Unless you are developing mP, mC apps in assebly :)

                              In soviet Russia code debugs You!

                              L 1 Reply Last reply
                              0
                              • D Dan Neely

                                I learned it in one of my Freshman/Sophomore level CS classes. My lecturer for the class didn't know that 0.1 (decimal) was a repeating decimal in binary. :doh: After the lecture I had to demonstrate it by working the division longhand through 2 or 3 repeats and then by converting the repeating decimal back into a fraction.

                                3x12=36 2x12=24 1x12=12 0x12=18

                                N Offline
                                N Offline
                                n podbielski
                                wrote on last edited by
                                #58

                                :| on what university you graduated?

                                In soviet Russia code debugs You!

                                D 1 Reply Last reply
                                0
                                • M Mark_Wallace

                                  Danny Martin wrote:

                                  We take it for granted that those beige boxes (or white, shiny ones in my case :O ) know that 2 + 2 = 4

                                  Trouble is that they don't. They might know that 010 + 010 = 100, but not the 2 + 2 = 4.

                                  I wanna be a eunuchs developer! Pass me a bread knife!

                                  N Offline
                                  N Offline
                                  n podbielski
                                  wrote on last edited by
                                  #59

                                  Mark Wallace wrote:

                                  010 + 010 = 100

                                  No. 010 + 010 = 20 010b + 010b = 100 ;P

                                  In soviet Russia code debugs You!

                                  1 Reply Last reply
                                  0
                                  • D Danny Martin

                                    Hi Guys, I am doing a bit of research and was just wondering... How many programmers know how a computer does math? We take it for granted that those beige boxes (or white, shiny ones in my case :o) know that 2 + 2 = 4, but how many devs know how they work it out? How many care? Should we know? If you know, how did you find out, and when / under what circumstances etc. I learned Boolean Logic in the nineties while working with 68k assembler, and it was a real eye opener. What are the teams thoughts? Danny

                                    E Offline
                                    E Offline
                                    englebart
                                    wrote on last edited by
                                    #60

                                    Kind of in response to the php string vs. int earlier... We had a QA team member the other day that was extracting 2 values from a screen. It should be the same value. One value was retrieved as a string that was formatted to decimal places (1.00). The other was a floating point value that their testing tool displayed with only a single decimal place (1.0). Their comparison was saying that the two values were different. I do not use the testing tool myself but it could have been failing due to string vs. float or even string vs. string where the decimal places were different. I am not sure what they did to solve it, but this seemed like a really basic problem that they should have hit years ago. Of course since it is a float, the actual value may have been .999999999999. Who knows? P.S. I hate floats.

                                    1 Reply Last reply
                                    0
                                    • I Iain Clarke Warrior Programmer

                                      Danny Martin wrote:

                                      nineties while working with 68k assembler

                                      Whippersnapper! Early 80s, z80 & 6502. Ah, the days of knowing 1's and 2's complement, and hexadecimal... Iain.

                                      I am one of "those foreigners coming over here and stealing our jobs". Yay me!

                                      E Offline
                                      E Offline
                                      edmurphy99
                                      wrote on last edited by
                                      #61

                                      the ancient one, he who speaks of floppy disks I first used the PDP-7

                                      M 1 Reply Last reply
                                      0
                                      • N n podbielski

                                        Eddy Vluggen wrote:

                                        Ideally a dev would learn to do additions in a different representation than decimal.

                                        I think it's not really dev work. I learned this in high school (with electronics specialization) on microprocessors classes. And again on university on classes about assembler x86 and 51 miprocessors. So this is really another job. Unless you are developing mP, mC apps in assebly :)

                                        In soviet Russia code debugs You!

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

                                        n.podbielski wrote:

                                        I think it's not really dev work

                                        Math is not your work, it's knowledge that makes you better at your work. It's not required for drawing forms or manipulating Xml, but it helps a lot when you need to implement/understand an algorithm. Try writing your own BigInt in .NET 2, or Google for 'encryption' in VB6 - the latter will most likely give examples that perform a calculation on a string. It helps in understanding that a Guid is merely a large number, why there's a difference in text-encodings, and why the or is used in C# to "add" enums together (BindingFlags.Public | BindingFlags.Instance)

                                        Bastard Programmer from Hell :suss:

                                        N 1 Reply Last reply
                                        0
                                        • D Danny Martin

                                          Nemanja Trifunovic wrote:

                                          What Every Computer Scientist Should Know About Floating-Point Arithmetic

                                          :omg: I am SO glad I'm not a Computer Scientist... My knowledge of this is totally binary - I only know a 'bit'. ;) Danny

                                          J Offline
                                          J Offline
                                          Joe Simes
                                          wrote on last edited by
                                          #63

                                          Danny Martin wrote:

                                          I am SO glad I'm not a Computer Scientist...

                                          Me too!! And actually every person I've ever met that calls him/herself a Computer Scientist (with a BS in CS) has been a complete and pretentious twat! :-D

                                          The environment that nurtures creative programmers kills management and marketing types - and vice versa. - Orson Scott Card

                                          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