Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Education Math Programming

Ask Slashdot: How Important Is Advanced Math In a CS Degree? 656

AvailableNickname writes "I am currently pursuing a bachelor's in CompSci and I just spent three hours working on a few differential equations for homework. It is very frustrating because I just don't grok advanced math. I can sort of understand a little bit, but I really don't grok anything beyond long division. But I love computers, and am very good at them. However, nobody in the workforce is even going to glance at my direction without a BSc. And to punish me for going into a field originally developed by mathematicians I need to learn all this crap. If I had understood what I was doing, maybe I wouldn't mind so much. But the double frustration of not understanding it and not understanding why the heck I need to do it is too much. So, how important is it?"
This discussion has been archived. No new comments can be posted.

Ask Slashdot: How Important Is Advanced Math In a CS Degree?

Comments Filter:
  • by davecotter ( 1297617 ) <.me. .at. .davecotter.com.> on Friday May 31, 2013 @01:04PM (#43874521)
    if you're going into app development or IT, probably not much math needed. i've been in app dev for a long time (and quite successful). Those times that i actually need math? I just look it up, program it, then forget it. I never have needed much math. However, if you're going into some CS field that requires math, well, obviously, it's worth your while to study it.
    • by Cryacin ( 657549 ) on Friday May 31, 2013 @01:07PM (#43874561)
      If you're doing quants work, or business intelligence, data mining etc, sure. Hardcore math is a must. If you're developing business software or something like that, it's more important to know Djikstra, the gang of four and closures.
      • by JBMcB ( 73720 ) on Friday May 31, 2013 @01:10PM (#43874635)

        If you're developing business software you're going to need stats. It's inevitably going to rear it's ugly head sooner or later.

        • Re: (Score:3, Interesting)

          by Anonymous Coward
          I second this. I made some recent "statistical process control and analysis"-based improvements at my job (determining past typical variation and comparing to it as a measure of quality rather than unconnected arbitrary thresholds), which nobody else even knew were possible. We aren't a manufacturing company - we just deal in images. The improvements should have been immediately obvious to anyone with an understanding of statistics, but nobody here in the past ever understood statistics.
        • by NReitzel ( 77941 ) on Friday May 31, 2013 @02:16PM (#43875735) Homepage

          The bottom line is very simple. If you have the math - and I'm talking diffeq and applied mechanics and dynamics - you will get jobs that others cannot. And strangely enough, those jobs pay very, very well.

          Just like everyone else says, if you're content being a web programmer at a medium--to-ok salary, then forget the math.

          If you want a job writing control code for F22's, at a salary that can make your head spin, then consider the math as supremely important.

        • by Machtyn ( 759119 )
          Yep, stats is important. But stats isn't diff. eq. Once you understand differential equations, they're really cool! Unfortunately, I'm in the same boat as the author of the question, I was a B- at very best on the advanced maths. Linear Algebra was also very cool. I can completely see where it applies to computer calculation optimization, geometric calculations and a bunch of other things. But, again, I couldn't follow the process very well while in the class and certainly not now.

          But stats... no matt
      • by FilmedInNoir ( 1392323 ) on Friday May 31, 2013 @01:28PM (#43874963)
        Advanced calculus/linear algebra is a must for game engine development. I try to read articles about rotating 3D objects.... *WHOOSH* over my head. But I've done well for 13 years doing IT client/server programming and just looking up the occasional algorithm for lat/long distance calculations, permutations, etc. Still need to be able to translate math formulae into a computer language though.
        • I have a BA in CS and I took some advanced calculus and linear algebra classes. I've done game development, desktop application development, and web development. The only time I've ever had to use any advanced math was when doing game development.
          Even when doing graphics programming most of the fancy math is already handled through frameworks. You don't actually need to know how to do vector calculations when you can simply call Vector.Add. It obviously helps to know of their existence and what they ar
          • by fahrbot-bot ( 874524 ) on Friday May 31, 2013 @03:11PM (#43876413)

            Even when doing graphics programming most of the fancy math is already handled through frameworks. You don't actually need to know how to do vector calculations...

            Unless you want to actually work *on* those frameworks... Someone has to develop/maintain the tools the rest of us simply use.

          • I'm somewhat of the mindset that deep understanding helps developers apply the tools more intelligently. Without understanding the underlying math, some of the work would be trial and error, and while that might lead to a working system, it might have very difficult to debug problems based on poor logic. To use a metaphor, you can certainly build a bridge, given the right tools and equipment, but without math, it might fail suddenly and catastrophically at an unpredictable moment. I'm thinking of that fa
        • Advanced calculus/linear algebra is a must for game engine development. I try to read articles about rotating 3D objects.

          FWIW I took a linear algebra class and a 3D graphics class. There was about 1 class period of linear algebra that was relevant to game development. The Linear Algebra necessary for game development can be learned in a day if you're willing to apply yourself.

          • by thomasw_lrd ( 1203850 ) on Friday May 31, 2013 @02:14PM (#43875691)

            Almost all of Linear Algebra can be learned in a day, if you're willing to apply yourself. At least that's how my Linear Algebra was, but then again, the Prof said it was pretty dumbed down. So go figure what I know.

            • by gr8_phk ( 621180 )

              Almost all of Linear Algebra can be learned in a day, if you're willing to apply yourself.

              WTF? Matrix multiplication can be learned in a day. How about geometric transforms, diagonalization, basis vectors, eigen values, etc... Sure I can refresh my memory on ALL of those and more in an hour or two, but to learn it the first time is not a one day task.

              Read the AMS article on PageRank [ams.org] and tell me how someone could grok that after studying linear algebra for one day.

        • Or satellite orbital mechanics. Oddly enough, way back when, I had my AHA!!! moment in how to do 3d computer graphics (it was a hobby, this was in the time of future crew, renaissance, etc) when I took a spaceflight dynamics class. Yup, rotating and translating, to include 3d equations of motion and acceleration for spaceflight are EXACTLY the same thing you do to render the stuff on a computer (except you have to add the perspective, 2d screen and all that).

      • by Anonymous Coward on Friday May 31, 2013 @02:00PM (#43875497)

        Differential equations - control theory and anything that brings you in contact with engineers (or if you want to work in finance)
        Linear algebra - signal processing, computer graphics (don't even think about doing computer graphics without knowing linear algebra)
        Logic - system modeling and software verification, and basically everything else
        Calculus, discrete mathematics - high performance computing, simulation, communication, anything that brings you in contact with physicists

        • In general, advanced mathematical topics require you to grapple with abstract concepts and find connections between them, and link them together in ways to accomplish tasks. Any interesting software development (i.e, work that is not "change the color of the login button and move it 7 pixels left") uses the exact same kind of abstract thinking.

          So even if you never do multi-variable calculus or ring theory proofs or topology exercises at your job, any time you spend learning those things hones skills you will use at your job.
      • by elfprince13 ( 1521333 ) on Friday May 31, 2013 @02:02PM (#43875535) Homepage
        Also, if you're doing any serious work in algorithms, a strong understanding of proof techniques and discrete math is a must.
        • by Bob the Super Hamste ( 1152367 ) on Friday May 31, 2013 @02:46PM (#43876111) Homepage
          Too true. I just finished working 5 hours on a proof with another guy in the office to show that something had complete coverage of the state space, will always produce the correct output for all inputs. Now it is time to code once I finish my lunch. Granted some of that time was spent simplifying the final solution. I use higher math almost every day, granted it ins't diffeq, but I often use linear algebra, boolean algebra, discrete math, and proofs (the non shapes part of geometry). I don't use calculus or stats in my current line of work but in my previous job stats was a big part of it writing insurance code.
    • by geekmux ( 1040042 ) on Friday May 31, 2013 @01:12PM (#43874661)

      if you're going into app development or IT, probably not much math needed. i've been in app dev for a long time (and quite successful). Those times that i actually need math? I just look it up, program it, then forget it. I never have needed much math. However, if you're going into some CS field that requires math, well, obviously, it's worth your while to study it.

      I think that was the point of the query here, exactly what fields remain today that require the level of math that is (rather arcanely) still infused within a CS degree?

      I fell into this same trap when initially pursuing my degree. Avoiding all the advance math requirements due to my own hatred of it, I was facing three separate tracks of nothing but I/II/III math courses, which were obviously best taken in succession. It was going to take me way too long to accomplish this (while going stir-crazy on nothing but math), so I ended up switching to the MIS path, which didn't have the absurd math requirement.

      • if you're going into app development or IT, probably not much math needed. i've been in app dev for a long time (and quite successful). Those times that i actually need math? I just look it up, program it, then forget it. I never have needed much math.

        However, if you're going into some CS field that requires math, well, obviously, it's worth your while to study it.

        I think that was the point of the query here, exactly what fields remain today that require the level of math that is (rather arcanely) still infused within a CS degree?

        I fell into this same trap when initially pursuing my degree. Avoiding all the advance math requirements due to my own hatred of it, I was facing three separate tracks of nothing but I/II/III math courses, which were obviously best taken in succession. It was going to take me way too long to accomplish this (while going stir-crazy on nothing but math), so I ended up switching to the MIS path, which didn't have the absurd math requirement.

        The reality is that many people go the CS route because they are told that is where the jobs are, but most of those jobs are in corporate america. A better route for corporate america is a business administration degree with a minor in computer science or even just some programming classes. The traditional Computer Science major is more akin to an engineering degree than anything else. Nobody gets an electrical engineering degree for the purpose of becoming an electrician, that would be overkill. Likewise,

    • by Hatta ( 162192 ) on Friday May 31, 2013 @01:25PM (#43874915) Journal

      If you're not going to need much math, you proabably don't need a CS degree either.

    • by internerdj ( 1319281 ) on Friday May 31, 2013 @01:29PM (#43874975)
      If you are going to go further in your education then you will need to learn all that math too. I've spent a sizable chunk of grad school reviewing math because I didn't take it serious during my undergrad. Solid statistics is used in countless places. Linear algebra is key to understanding computer graphics and has powerful tools for other more specialized applications. Differential equations are used for all sorts of real world simulation problems. If your university is like mine then you will get an in depth discrete math course from the math department that covers the problems you hit when using a discrete machine to try to work with infinite things. You might get that from the CS department but our CS coverage was all sorts of CS related math. If you do anything hard then the CS coverage may not cut it.
    • Even though you Looked it up and programmed it and forgot it. You knew what to look up.
      That is part of the reason for Advanced Math in Computer Science.

      Sure most of the programs you do the most advanced math may be Division, however sometime you need to pull out the books (or google) about stuff in Statistics (Oh we have a data set, what is most common), Calculus (Lets find the most optimal spot), Discrete Math (Will you hair-brain idea even work), Linear Algebra (If you are doing 3D graphics), My Program

    • Taking math in school has very little to do with actually being able to perform calculus or differential equations in ten years. It is about training your brain to think differently than most people. To train your brain to think more logically.

      The same people who struggled with Algebra in high school are the same people who are going to struggle with complex business rules in application code. If someone failed at something simple like integration by parts, I probably don't want them in a lead role designin

    • I think I disagree. The point ot Math in CS is not to memorize a bunch of formulas that you might use in a program, or even to be able to derive a few yourself. The point of Math in CS is that CS is Math and Math is CS, every aspect of CS is governed by Math that you should understand. On their surface there does not seem to be much Math on a banking app, but it is there. Encryption, efficiency, performance, and just CS in general is all Math.

    • The problem is the person has to understand enough to know what to look up instead of starting with a blank slate. What the submitter is calling "advanced" really isn't but is instead a starting point to be able to lead into advanced topics if required.
  • well (Score:5, Funny)

    by Anonymous Coward on Friday May 31, 2013 @01:05PM (#43874527)

    If a few differential equations are giving you so much trouble, you can stop worrying about learning advanced math. ;)

  • by eldavojohn ( 898314 ) * <eldavojohn@noSpAM.gmail.com> on Friday May 31, 2013 @01:05PM (#43874533) Journal
    The verdict is: it's important.

    I have two resumes in front of me. I need someone who can write some fairly complicated software. Are they writing the kernel to an operating system? No. But they'll be making complexity decisions between a server and a client. Not exactly new or novel but important to me and my clients.

    So I look at one resume and the guy has suffered through integration by parts, linear algebra, differential equations and maybe even abstract algebra. The other guy went to a programming trade school where those are not taught. The trade school likely taught inheritance, pointers, typecasting, and all that good stuff just like the Bachelor's of Science degree would.

    Now do my solutions need integration by parts, linear algebra and differential equations? Absolutely not. But if I'm going to pick between the two, I'm going to take the applicant that solved more difficult problems in order to make it to a class. Few people actually care about those concepts deep in their hearts -- and I'm sure neither of my prospective employees did. But in that same vein, no rational developer is going to care at all that my client likes to be able to drag and drop files instead of doing file navigation to find the files he wants. But I want the applicant who's going to do the inane stuff that he doesn't personally view as important.

    Challenge yourself. Take the math courses. Take the logic courses. Take the statistics and combinatorics courses. Take the finite automata courses. Prove to yourself that there are no obstacles in your way. They are a great expense of time now but they are a huge investment in yourself -- no matter how pointless they appear to you.

    If I had understood what I was doing, maybe I wouldn't mind so much.

    You should attack this problem two different ways: 1) increase the amount of time you allot to your own personal enrichment in these topics/courses (three hours is very little time if you are approaching new concepts in math) and 2) seek outside instruction as it's also possible you have a professor who doesn't understand what they're doing either (the teaching, not the subject matter).

    • Re: (Score:3, Insightful)

      by phantomfive ( 622387 )
      Let's be honest, if they can program well, and your company has any resources at all, you'll hire both of them. Good programmers are in short enough demand that it's worth it to hire a good one when you find him, whether he has advanced math skills or not.
    • by dynamo ( 6127 )

      If you are looking at resumes that actually list what /classes/ the candidates took, they probably have zero experience. The other guy who has some actual experience or did some personal project interesting enough to fill the space will get the job.

    • I have been hiring IT professionals for years, hardware, networking, security, and software gurus. Give me a high school senior who has contributed to the linux kernal, published their own android game app, created their own web site, over an advanced mathematics student /any day/. The IT field is about self motivation, natural Intuition. Without these qualities, (which are the evidence an applicant being self taught), the applicant is really very useless. IT is a lot about creativity, abstract analysi
      • by Frobnicator ( 565869 ) on Friday May 31, 2013 @01:39PM (#43875125) Journal

        I have been hiring IT professionals for years, hardware, networking, security, and software gurus.

        If you are hiring IT professionals and gurus, you don't need computer scientists.

        I work in the video games industry, inside the guts on game engines. I absolutely need math.

        If you are simply working on 3D games you need math through linear algebra and calculus. If you are working on any high-performance graphics processing you will need sharp math skills. When you are talking about a billion polygons per second you don't have the luxury of allowing a computer to do all the work for you; you need to pre-solve everything you can, which in turn means having solid mathematics skill.

        If you are working on games physics simulations, all those PDEs in college will look easy. You also better know your stuff from the highest level concepts of math down to the details of getting the most from associative caches. Again, a solid mathematics background is a must.

        If you want to get a job as an "IT Professional" writing crappy business software, the math (and really, the whole computer science degree) doesn't really matter.

        If you are a business programmer where 20ms means a database transaction, you don't need the math.

        If you want to write any kind of scientific work or any kind of high performance software, anything from video games to weather simulations to military simulations to oil and gas exploration, you absolutely need the math skills.

        • Re: (Score:3, Funny)

          by eek_the_kat ( 249620 )

          and if you want to make money, don't go into scientific or game programming.

        • by lgw ( 121541 )

          There's more to life than your specialty: "high performance software" in the business world is a real concern, but one that is solved now by scaling out. CPU is never a bottleneck, and I really don't care about "performance" as measured by CPU cycles, but that still leaves a few difficult and interesting problems. Designing a system that will have hundreds of millions of users, or billions of users, will certainly make you worry about performance, just not the kind you need linear algebra to solve.

          If you want to write any kind of scientific work or any kind of high performance software, anything from video games to weather simulations to military simulations to oil and gas exploration, you absolutely need the math skills.

          That's

          • That's an amazing list of some the lower-paying specialties in the field. But it's a basic rule of all engineering that "fun, difficult, and engaging problems" == "we can pay you less and you'll still do it".

            For beginners in the fields, often that is true. And if you are foolish and never specialize, well, that's your choice. Once you've got a few years of experience in specialty fields you can generally find excellent pay. I've got some recruiter friends who are constantly hunting for experienced graphics specialists in the $150K pay range. If the programmer has skill in negotiating they can get more.

            If you've got a few years of specialized game experience and you are making less than your business-database

      • by lahvak ( 69490 )

        IT is a lot about creativity, abstract analysis, linguistics, and logic. Any applicant with a modicum of these fields of training is significantly more valuable than the Math Guru.

        You do not know much about mathematics, do you. Because actual mathematics (the "higher level" math classes that the OP is talking about) is all about creativity, abstract analysis, linguistics, and logic.

        The unfortunate paradox of current math education is that the lower level math classes seem to be often specifically designed

    • by davecb ( 6526 )

      You end up needing it later, anyway... I struggled with logic initially, and wondered if I'd ever need it. I ended doing a ton of it in ADL just to test some libraries! And as a performance engineer, I rapidly discovered that DBAs don't know deMorgan's law, hoping that the query optimized does (;-))

      --dave

    • by N_Piper ( 940061 )
      As a 30-ish adult trying to get into the industry who has gone through trade schooling I cannot say this emphatically enough
      F-you you elitist so-and-so your type are why I am literally going hungry
      Not all of us made the correct choice in College or have the time and money to go back.
      My blue collar resume and tech school are all I have and somehow you think my education is a character fault?
      Where the hell do you get off?
    • by wolvesofthenight ( 991664 ) on Friday May 31, 2013 @01:44PM (#43875191)

      Challenge yourself.

      If the overriding goal is personal intellectual development, absolutely. But if you are worried about getting a good job, no. Most unfortunately, the university and employment system has a very effective built in punishment for this called the GPA. HR departments and hiring managers often filter by GPA. Some employers, like Sandia National Laboratory, have remarkably high GPA requirements. And you don't get the top GPA by challenging yourself.

      In your example, with a community college vs a university, the difference in degree would be very relevant, However, it sounds like AvailableNickname has already chosen a (4-5 year?) university and is simply asking what classes to take. When it comes to be job time, the main questions will be: Degree, GPA, coursework relevant to the job, and university reputation. Given his distaste of math I would hesitate to recommend a math intensive career path and study, though I do recommend a solid foundation.

      At a minimum, 1 year of Calculus and a semester of statistics. More if piratical. And it sure sounds like he is well into calculus. Beyond that, how about taking the classes most relevant to whatever career he would like? Simultaneously decide if it is work that he might actually enjoy and get something to put on his resume that directly relates to the job he wants.

      Also remember that you can study whatever you want and challenge yourself on your time after you finish school. When I hear somebody say "I wish I had taken more of X" I am inclined to say "Well, go study it." Be it books, local classes, or online classes, you can do independent study. Yea, it might not be as good as a real class, but don't let that stop you.

      • by cowdung ( 702933 )

        True. GPA can be an impediment to risk taking behavior that often leads to more learning. In College I avoided some classes because of their potential effect on my GPA and also because they wouldn't fulfill any requirement. I regret having made those decisions.. though I don't regret having had a good GPA.

        On the other hand, I definitely DO appreciate having taken very hard classes and the only classes I didn't like were the ones that were too soft (well, also the incomprehensible seemingly irrelevant ones).

    • by Assmasher ( 456699 ) on Friday May 31, 2013 @01:53PM (#43875385) Journal

      While I understand your point, it also has weaknesses.

      I worked with a guy who was a math guru - and he was an absolute sh** software engineer. Oh, he could program some - give him a very finite problem to solve and he could solve it very functionally; however, when it came to actual software *engineering* he was an total loss.

      Normally we'd replace a guy like that, but like I said, he was great with numbers - so we gave him a sandbox to play in. He never ever, ever, checked in code into our system. He'd finish something and turn it over to another engineer who'd refactor it and check it in.

      He was a hell of a nice guy too, but being smart has nothing to do with being a good software engineer (although it surely makes it easier.)

      • Depending on what your application was, this guy could have been useless, or he could have been the lifeblood of your project. Sometimes it's not the number of lines of code you check in, but the ideas behind them that matter.

  • by Anonymous Coward on Friday May 31, 2013 @01:05PM (#43874535)

    If you think advanced math is "anything beyond long division", you are probably going to be in trouble.

  • Oh dear (Score:5, Funny)

    by spongman ( 182339 ) on Friday May 31, 2013 @01:06PM (#43874541)

    "Good at computers" ?

    you should put that on your résumé.

    • by jaymz666 ( 34050 )

      That may impress grandma... not HR

    • Re:Oh dear (Score:5, Insightful)

      by mblase ( 200735 ) on Friday May 31, 2013 @01:37PM (#43875099)

      "Good at computers" ?

      you should put that on your résumé.

      That was about my reaction.

      Long bio short: I was *great* in math in high school, pretty good at calculus, but differential equations and their non-algorithmic problem solving methods just confused the heck out of me. (In hindsight, I should have asked my teachers for more help.) At the end of my freshman year I was introduced to NCSA Mosaic and then Netscape 0.9, started teaching myself HTML and, later, JavaScript, and got a job coding web sites. I still do that.

      I took to programming so well, I wished I'd tried it sooner. Turns out that programs and math proofs use the same sort of abstract logic -- get from point A to point B using these pieces.

      I always liked computers, but I don't suppose I'd describe myself as "good with computers." That means USING software, not WRITING it. Writing software requires judicious applications of logic and optimization, with varying levels of analysis and computation sprinkled in.

      And the further you get in programming, the more advanced math you need. Graphics? Uses trigonometry. Animation? Matrix algebra. You probably won't need calculus or differential equations unless you're actually doing engineering, but how do you know at this point that you won't?

      Heck, my state university wouldn't even let me get a CompSci minor without passing a class in circuit design, and you'd better believe I needed to know algebra when designing a binary multiplier.

      My point is this: computer science IS math, just with a different vocabulary. Being a CS major because you're "good with computers" is like being an auto mechanic because you're "good at driving".

      Math isn't about numbers, it's about logic and problem solving, and computer science is even more so. If you can't even find something to enjoy about simple algebra, then with all due respect, you're in the wrong field.

  • by phantomfive ( 622387 ) on Friday May 31, 2013 @01:06PM (#43874543) Journal
    In the real world you're going to have problems that are much, much more difficult than 3 hours. Work through it, if for nothing else than to improve your problem solving skills. That is something you definitely will never regret.

    FWIW I had some trouble with differential equations, too. I went to the library and found a book there that explained it much better. Made my life a lot easier. If you're having trouble 'groking' advanced math then the problem might not be you, it might be your book/teacher. But if you are afraid of work, the problem is definitely you.
  • I have both a BS and MS in CS, and have never taken (or needed) differential equations. I also completed all of the coursework for my Ph.D in CS, but didn't do the dissertation. I took three calculus courses, and have never used them, either! Analysis of Algorithms and the ability to do high school algebra and occasionally trigonometry have stood me well, however.
  • I think some writing courses would probably give you more mileage.

  • Computers do math. They just do math. Yes, it is important to learn, both from a practical aspect (can you predict the entire arc of your career right now?), and probably the most important- getting through these classes show you have the ability to take on complex subjects in a relatively short amount of time and apply them.

    Beyond anything else, a degree is a method of showing potential employers that you can learn.

  • by Garridan ( 597129 ) on Friday May 31, 2013 @01:09PM (#43874611)

    Mathematician here. You're learning differential equations to prepare you for lifetime of abstraction, to sharpen your skills in symbolic manipulation. Those differential equations probably won't really enter into the game... but who knows, you might end up doing game physics which is nothing but a massive differential equation solver.

    But I'm here to tell you that differential equations are not advanced math. Take a discrete math class to get a taste of what 'real' math is for a programmer. Take data structures. You'll find yourself doing formal proofs (real math), and it will be extremely applicable to the rest of your programming career. That DE class is there just to make sure you can manipulate symbols.

    • by vurian ( 645456 )
      "You're learning differential equations to prepare you for lifetime of abstraction, to sharpen your skills in symbolic manipulation." That sounds a lot like the reason people were once told to learn Latin and Greek -- it would prepare them for a lifetime of thinking. Me, I think it works. Make everyone go through a course that has enough hard enough things to do and keep the ones who get through. It's just that maths isn't anything special, or even of more practical use than Latin, it's just a way to dis
      • by stymy ( 1223496 )
        People didn't study Latin and Greek just for their sake. They studied those languages in order to read some of the greatest works of literature, philosophy and mathematics in human history. I studied Latin in grade school (Argentinian private school) and I'm glad I did. Latin made it easier to learn Italian and French, as well as English (65% of the vocabulary in English has Latin roots, as well as a number of grammatical rules). Moreover, no translation can do justice to the beauty of Virgil's poetry, and
  • Many parts of Computer Science require quite some mathematical knowledge.
    Machine Learning, Artificial Intelligence, computability, linear regression, .... all require you to know something about math.

    Sure you don't need advanced math to install a router or network. Or even to make an App. But you're pursuing a degree in Computer Science, so computer science you get. If you're just interested in some programming, networks, etc... You may be better of getting some certifications from M$, Oracle, Cisco and
  • Maths is always good, no matter what situation. It goes side by side with logic, and calculus is a way of thinking about the world and its processes.

    For some areas, there's a lot of math involved. Consider data analysis. At first, it may seem like you will never need data analysis, but many people end up working for companies where they have to track performance and efficiency issues (if you can save those 5 bits for each of those 10M clients, you'll get a nice raise). Another example: picture a situation
  • An important lesson I learned after college is that not every "requirement" is an actual requirement. Requirements like classes are often hurdles that are placed to either weed out people who don't want to do the hard work. Sometimes they are there to seem accredited to other organizations, allowing the school to justify their degrees.

    I couldn't get a CompSci degree for the same reason. I couldn't handle calc. I got As in all my programming classes, but couldn't do the math.

    I would say CS requires more

  • If you're going into IT, chances are you probably don't need advanced math. Going into CS research? Probably. General software development? I think knowing advanced math helps you develop interesting and useful algorithms that can be used in the software. You may not use the advanced math topics/tools, but the skills you learn in advanced math help a bunch.
  • I went to school for art. I have no degree to show for it. I always had an interest in comp-sci, but never pursued it beyond a hobby in school. Now i'm a senior engineer at a big software company making cool stuff. I'm well respected by my peers and have never had a hard time getting a job in this industry. I suck at differential equations (I am good at vector and matrix math, and well, i can apply quaternions. my forte is graphics libraries like open gl and direct x). I probably don't suck so much as i've
  • by bhlowe ( 1803290 ) on Friday May 31, 2013 @01:13PM (#43874689)
    If you enjoy programming and computers, don't let poor math skills stop you from doing what you like. I sucked at calculus and do very well as a programmer. Logic is the more important skill.
    • by RedHackTea ( 2779623 ) on Friday May 31, 2013 @01:41PM (#43875165)
      Agreed. You only need more complicated math if you're going into research, getting a Masters/Doctorate degree, or game development (this can still be argued away as there are many internal tools and interface developers that don't need complicated math). It depends on your career path.

      The most that I use (as a typical 9-5 programmer) is algebra, proportions, statistics, and other simple math learned in High School or in my CS classes. Logic, data structures, etc. are far more important. Occasionally, I'll use some CS algorithms (infix notation, depth/breadth-first searches, etc.), but they're all related to CS with only a rudimentary knowledge of math needed. I've never used Trigonometry, Calculus, or anything higher on the job.

      Ignorant bosses still have this mindset of Math & CS being tightly interlinked and how Math helps greatly. It helps to a degree, but not that much. I've known programmers that had high degrees of math -- and ultimately it's just a lot of "theory" in my opinion. They didn't do a lot of practice and application. Because of the high burden of math, they were forced by their colleges to put more focus on theory. Their job performance was/is terrible. They're crap programmers, sorry. So, then the bosses decide to put them as designers and architects... that may work with buildings, but not programming. In programming, you have to know how to build something properly in order to design it properly, so again, complete crap. If you want to be a programmer, learn CS and programming. If you think that you may need math or it will help you get hired, then pass all of your math classes with a C average and focus your intention on getting A's in your CS classes (while hacking out fun coding projects on the side). Then for the little time you have left drink some Sunny D and Rum and enjoy life...
  • CS is about algorithm development, not application of higher math concepts. I spent several years writing C++ for satellite image processing, and can tell you that I truthfully do not know all of the ins and outs of the mapping functions, projections, etc. That's why the company has a couple of PhD's working on this. They do the hard number crunching and then articulate what we need to do in terms that a non-math-major can understand.

    I see no reason why you should spend money getting yet another credenti

  • Of course you need maths at a higher level. Try binary subtraction by hand.

  • Computer Science can be seen as having a theoretical and practical side. The theoretical side deals with defining how computers work, how to make them better, and why algorithms run the way they do and how to make them better. The practical side takes the theory and implements it; however, it still takes the abstract side to develop applications and make them do what you want efficiently.

    You don't NEED math to write applications but without it, your applications will suck. Also, you won't be able to do a
    • by JustNiz ( 692889 )

      >> Also, you won't be able to do anything much more advanced than a Helo, World application without memory and runtime issues.

      Sorry but this is pure bullshit. Other than Boolean algebra my formal math sucks but that doesn't have any effect on my ability to write stuff like device drivers or complex apps effectively.

  • by Frankie70 ( 803801 ) on Friday May 31, 2013 @01:14PM (#43874715)

    But I love computers, and am very good at them

    What exactly does this mean?
    - You can use MS Word much better than your friends and grandparents
    - You can tweet better than them.
    - You are better a googling than your friends and grandparents.

  • by sideslash ( 1865434 ) on Friday May 31, 2013 @01:16PM (#43874741)
    On one hand, if you aren't writing engineering / simulation / trading / game internals, you are unlikely to use most advanced math. So it's not important. On the other hand, if you can't handle advanced math, you probably won't be a top-tier programmer either. Top-tier programmers think about advanced concepts and keep a lot in their heads at the same time. So in that sense I'd say it is important.

    You can't change your IQ, but you can maximize the use of what you have by developing good personal mental disciplines, i.e. working your behind off on stuff like this in college. My $0.02.
  • I bet you're a freshman. As mathematics (along with physics) is the foundation upon which computer science is built, you would do well to have a good understanding of it. I'm not saying that you should become an expert or take on a math degree, but, if you don't understand the basic principles underlying the code that you write, then I would have a hard time trusting that code in any meaningful application. Plus, it's not entirely useless in the real world. If you want to do an estimate of an algorithm's ru
  • Not at all. I've been writing code professionally for 14 years and in that time I've used Calculus exactly twice. Maybe if you did engineering involving a lot of physics but I seriously doubt those jobs are common. It looks good on a resume and all things being equal an employer would probably pick the applicant with the better math skills but then again the same can be said of just about any skill.

    Anyways good luck.

  • The answer to that question is 42 If you don't understand that, you may have to work on your advanced math a bit more.
  • by RichMan ( 8097 ) on Friday May 31, 2013 @01:23PM (#43874869)

    You are pushing calculus as advanced math. What about Galois field theory? You are not even at the advanced stuff yet.

    Proper algorithm design is not cook-book stuff, which is why it is Computer Science, not Applied Programming. You will likely do well at Applied Programming. The higher order math is for those that will go into the Science part of the programming.
    Understanding the difference between the Science and the Application is important.

    The most important thing is to know your limits and when you should go looking for help to solve something.

  • The school I went to in particular, the CS courses had more math than they had actual computer courses. I think they were just padding the cirriculum to make their degree program and math looked like the most viable option. As an 18 year old it was enough to make me change majors, I can do math but its not my favorite pass time, so a degree that looked an awful lot like a math degree with a minor in computers was enough to scare me away. I regret not looking at other schools.
  • by SWGuy ( 566046 ) on Friday May 31, 2013 @01:23PM (#43874879)
    I hated math in university, I still hate it now, but over a 25 year programming career math has turned out to be the single most surprisingly useful thing I learned in university. Calculus, statistics, trig, I have needed them all in my programming work. I wouldn't have the cool job I have now if I couldn't do the math.
  • Of course, it could be useful for a future job, depending on what that may be. You'll never miss that skill that you don't have, because you'll naturally move yourself into what you are capable of. You won't need much math for front end stuff, user interfaces, accessing a database, code monkey stuff. Actually, you don't need much CS either. But if you want to get into physics simulations, signal processing, graphics/audio processing, finance, video games, writing a database, ..., that math knowledge would c

  • Really, who cares? (Score:5, Insightful)

    by waddgodd ( 34934 ) on Friday May 31, 2013 @01:24PM (#43874893) Homepage Journal

    This is an exemplar of a phenomenon that I'm really beginning to despise in higher ed, the "do I NEED this?" phenomenon. Frankly, you don't NEED any given class to do most jobs out there. To be precise, your College diploma will not prepare you in the slightest for any of the multitude of skills you actually need in the job market nor is it designed to do so.. It is designed to prove you have the flexibility and desire to learn anything that comes across your plate. Picking and choosing what's actually relevant to your presumed career path is doing the exact opposite of this. How it impacts ME in a way that makes me despise it is that this trend is also transparent to College Professors, who now have no time to actually teach those that want to learn because they spend most of the semester fielding questions like "how will I use this as a McDonald's Fry Cook (or whatever the student laughably thinks they'll be employed as after graduation)" so they can't answer the basic "where can I find out more about this fascinating bit", leading to students like me getting so frustrated at the crap that they just give up on lectures. My honest advice to you is "if you don't think it's relevant to your interests, don't take it and petition the requirement off, you'll save a lot of people a lot of hassle that way"

  • maybe yes maybe no (Score:5, Insightful)

    by OldSoldier ( 168889 ) on Friday May 31, 2013 @01:31PM (#43874999)

    First, I agree 100% with everyone who says "yes" I agree 'even more' (math joke there) with those who suggest a different computer degree where math is emphasized less. However, let me paint an oddly two-sided picture with 2 different stories.

    I have a masters in math. In class one day our professor mentioned that he consulted for the forestry (or some such) department at the school. They were trying to calculate the area of an arbitrary region so as to estimate the number of trees within that area. Problem is the area may be convex or concave. The CS department at this school was trying to solve the problem by triangling the polygon, but ran into difficulties if the area was concave. My professor suggested using Green's theorem. Moral??? On the one hand advanced math gave a much more elegant solution to this problem, on the other hand **the CS department** at this school wasn't advanced enough to suggest it on their own... so if THEY can't do it... (fill in the blank).

    Many years later I was managing a small group of contractors on a project (I was also designer for this project) and I casually mentioned during a design meeting that we could calculate the score we needed by doing a weighted average of the various datapoints we already had. One developer mentioned outright that he would need me to write up the weighted average routine in psuedocode and I suspect the other developer felt the same way but was less forthcoming about his ignorance. Floored but already stuck with these guys, but then again... they're contractors and I believe they've been able to keep themselves employed since.

    At the end of the day, I'm one of those who thinks math and computer science is like solving puzzles... I would rather hire someone who likes solving all kinds of puzzles than one who has an admitted weakness in some (but perhaps not all) puzzles. If you indeed hate math that much I think you need to do some soul searching and figure out what sub-field of CS would be best suited to you. If you go into a field that requires math and you suck at it you'll probably be eclipsed by others more adept at it. On the other hand a lot of people who like math and CS are quite content to end their careers there... so if you have a growth plan that gets you out of CS work within a few years of graduating...

  • by Guru80 ( 1579277 ) on Friday May 31, 2013 @01:46PM (#43875249)

    Firstly, it's very important. You will be kicking yourself in the ass for the next 10 years when you have to keep going back to figure out all this "crap you will never need" that you just so happen to need every month.

    Your problem seems to stem from a lack of understanding the basics according to your summary. Go back and really study them until you understand tehm; it will make life so much easier and it won't take long. Everyone these days are "good with computers" and if that is your selling point you can get hired for helpdesk support at minimum wage right now. If you want to be involved in any of the advanced CompSci areas though those fundamentals (advanced math is one of many) are absolutely necessary. The first time you can't figure out a simple algorithm because you don't understand the math behind it just stand up, shake the interviewers hand and go home, you already don't have the job.

  • by Fallen Kell ( 165468 ) on Friday May 31, 2013 @01:49PM (#43875319)
    This is one area where I feel most CS departments do a very poor job explaining why this math is important. Too many seem to simply teach the math, but not WHY they are teaching the math. They do not show practical reasons for the the math, it is more simply taught as "Well this is the math. You need to know it because you need to know math".

    This is one of the reasons why I loved the way I learned these more advanced math classes. I was initially an Electrical and Computer Engineering major. Our Freshman and Sophomore curriculum was already per-designed before we even started. There were exactly zero changes you could make to it (unless you failed a course). We had calculus, physics, chemistry, biology, (and a few engineering classes, which were essentially introductions to engineering design, debugging/measuring instrumentation like oscilloscopes, multimeters, etc., basic circuit design, and practical implementation). But, all the classes were directly integrated. Meaning that at 9am when you had your calculus class which taught you differential equations, at 10:30am in your physics class you were then using the techniques that you learned in calculus to solve real world problems. The same with the chemistry and biology. Every professor knew exactly what was being covered in the other classes, so they knew exactly when they would use that material in a practical matter in their own course. We were using calculus to derive velocity vectors of moving objects, tangential line equations, and 3 dimensional transforms, the day we learned how to use the advanced math. So we were seeing the practical reason for the math and why it was relevant in the same day that we learned it.

    For a lot of programmers, you may not need to use those techniques, especially if you are simply writing social applications, or word processors. But if you are modeling 3 or 4 dimensional objects, simulating physics, creating a game engine, writing graphical engines like photoshop/GIMP, all this advanced calculus, differential equations, and matrix operations are very relevant.
  • Spend time thinking about the different between Software Engineering vs. Computer Science. It's kind of like the difference between Physics and Mechanical Engineering. Some schools now offer degrees in Software Engineering for this reason.

    One of the most useful classes I took was an entry-level Mechanical Engineering class. The reason is that the "Engineering" approach and mindset is needed in application development; yet a "Science" degree often doesn't emphasis this enough.

    When you're past the hurdle of math classes, look at fun engineering classes outside of the Computer Science discipline. You'll actually learn lessons that you can apply outside of college. For me, "Technology of Alpine Skiing" turned out to actually be useful, and I got to go skiing for a grade!

  • by drdrgivemethenews ( 1525877 ) on Friday May 31, 2013 @02:33PM (#43875933)

    When I was in grad school, I noticed that the EE classes were all about continuous math. EE deals with a mostly analog world and you need all those partial differential equations to work in it.

    On the other hand, the CS classes were all about discrete math. The EE guys give us machines that provide an environment based on binary math and logic. You need to understand finite automata, compilers, data structures, algorithms, and so on to work in that world.

    Myself, I found that I liked discrete math better, but that's me.

    One piece of advice. Learn and understand networking. You'll never be sorry.

    ------

    Theory blazes the trail, but it can't pave the road.

  • by rmdyer ( 267137 ) on Friday May 31, 2013 @02:37PM (#43875977)

    YOU WON'T REGRET IT!

    I started college out of high school as most do. I wasn't any good at 'math' either. I dropped out of college for a while. In the meantime I did a huge amount of hobby and semi-professional programming on my own. Later, after not being able to find a good job, I decided to go back to college. I decided early to actually, finally, try and 'get math'. I did it by forcing myself through math courses slowly, one at a time.

    You know what? I finally got some good instructors, and with the combined knowledge I got from my personal programming, I finally 'got math'. And let me tell you, the sensation of actually knowing what was going on in math was exhilarating, amazing, and fun. It turns out that 'math', is nothing more than symbol manipulation, and rules for symbol manipulation (of course combined with various forms of logic). So 'math' actually -is- programming.

    With 'math', you just sit around and memorize what the various symbols mean (nomenclature, discipline specific vernacular), what to do with them, and where they are applied. Turns out most of 'math' is algebraic in nature, so doing 'math' really well requires you understand the basic algebraic rules well. Anything else is logic specific to that dicsipline.

    I would say now, that if you don't understand 'math', you really don't understand computers. You are just a trades person, and will rarely end up doing much more than vocational work.

    Honestly, lacking the nature to push-through the crap envelope tells me a lot about your personality, and is why I would not hire you.

  • by msobkow ( 48369 ) on Friday May 31, 2013 @02:37PM (#43875979) Homepage Journal

    Over the years I've ended up making significant use of the math I learned in university.

    Array and vector mathematics for graphics and 3D modelling.

    Statistics for the financial industry, simulations, and supply chain programming.

    Calculus for physics modelling, sound wave propagation calculations, and a host of other things.

    Set theory for in-depth understanding and use of RDBMS servers.

    But if you don't know the mathematics that can provide elegant and efficient solutions, feel free to implement a hodge podge of crap code like I've run into time and again over the years.

  • by AdamHaun ( 43173 ) on Friday May 31, 2013 @03:07PM (#43876355) Journal

    It sounds like you're used to knowing everything already. Learning is not always easy. Spending three hours on a homework assignment is pretty common in a technical major. Think about how little time that really is and you'll see that it's not such a big deal. You will spend at least that long banging your head against new concepts at work, so you might as well get used to it now.

    Differential equations in particular can be hard if you're weak on algebra and calculus. IMHO, the most important thing to master for undergrad math is algebra. You need to be able to rearrange equations in your head. Once you can do that, the calculus stuff isn't very hard. Might be worth dropping the class and taking a refresher algebra course. Another option is to check out a few other textbooks from your university library (yes, they have them). A different presentation can make things much more clear. For the same reason, you might also try asking other professors for help. Try the physics department; they may be better at the intuitive side. I didn't really understand how to use integrals (as opposed to solving them) until a physics professor explained it to me.

  • by EmperorOfCanada ( 1332175 ) on Friday May 31, 2013 @03:09PM (#43876397)
    I will unreservedly say that the more math I have learned the better my programming has become. I am not sure what the limits(no pun intended) are but even calculus has been useful in ML applications. Discrete is great for thinking through networks and parallel computing. Statistics and ML are great for getting interesting information out of the hoards of data that most systems can gather. Matrix math is useful for both 3D and ML. The list goes on. But I like you looked at the crazy math until my eyes bled. Then I started to find resources where someone takes some bit and simplifies it. So bit by bit I learned the nasty stuff.

    But and this is a huge but; you are completely correct that many of the origins of CS seem to be largely old math professors who repurposed themselves. The result is some shockingly pedantic math in place of pretty simple math. So often a CS textbook or paper will use some bamboozling math formula instead of shockingly simple pseudo code. Worst case scenario they could use both side by side. So out comes the sigma notation instead of some pseudo code that says bandwidth_required=sum(network1..networkN);

    I am going to go out on a limb and say that the sigma notation make the person feel smarter. I will now quote from the intro to "Calculus made easy" written around 100 years ago.:
    "The fools who write the text-books of advanced mathematics-- and they are mostly clever fools-- seldom take the trouble to show you how easy the calculations are. On the contrary, they seem to desire to impress you with their tremendous cleverness by going about it in the most difficult way."

    Now some people are going to blah blah about the conciseness of math notation. But I say bah humbug. I'll take clarity any day over conciseness. Plus you can always put the math notation in a box or something so it is not either or. Plus leave the jargon at home. It is not a network topology it is a bunch of networked computers. Plus as programmers we only use a tiny handful of variables x, y, t, i. Not theta, not epsilon, not gamma. Once you need to put a double stroke in your character you have certainly lost me a page ago. If you use := to differentiate from == then you are a putz.
  • by Xyrus ( 755017 ) on Friday May 31, 2013 @03:12PM (#43876441) Journal

    First, differential equations isn't advanced math. Neither is Calc 2, 3, or 4. That's applied math.

    How important is it? You're asking the wrong question, and at the same time painting a less than stellar picture of yourself. Asking that question makes you sound more like a whiney kid who doesn't want to eat their peas than someone who is motivated to learn new things and improve.

    Learn as much as you can while you are in the coddled world of academia. You will be surprised at how often information you considered useless at the time will be useful. Every course you take is another set of information and skills that may come in handy down the road. For example, being able to understand differential equations will be quite useful if you're working on software dealing with simulations (whether financial or scientific). Even if you aren't implementing the core logic yourself, having a basic understanding may help you develop a user-friendly GUI for setting parameters, or even just writing some documentation. At the very least, you'll have confidence that if the need ever should arise you'll be able to quickly dig up the information you need.

  • by Cliff Stoll ( 242915 ) on Friday May 31, 2013 @04:47PM (#43877679) Homepage

    I work in computing; a meter away is a mathematician.

    He knows real math: group theory, complex analysis, Lie algebras, topology, and, yes, differential equations. To him, math isn't about numbers ... it's about rigor, elegance, and beauty.

    No surprise that his code is rigorous, elegant, and beautiful. When he showed me how to use Cheetah to build templates in Python, he explained things with an clarity and parsimony. In his world, clumsy coding is as bad as a clunky math; a clear mathematical proof is as fascinating as a tightly written function.

    This man is the go-to guy for the 100 person business. Soft spoken and never argumentative, his advice and opinions carry weight. I'm honored to work alongside him; not a week goes by that I don't learn from him.

  • The Universe has a structure that is, as far as we can tell, very accurately modeled by mathematical theories. It's no surprise that when solving problems that arise in the Universe mathematics is a vital tool. That said, some problems have been solved in general and if you expect to only spend your time programming specific implementations of solved problems you can almost ignore mathematics beyond familiarity with the symbols and skills necessary to translate mathematics into code, and only then if you can't just find a library someone else has written.

    But do you want to go through life taking other people's word for how and why the Universe works the way it does, oblivious of the knowledge of how to even figure out answers to questions for yourself? How do you know how long it will take your car to stop when you step on the brakes, and how far will it go before coming to a stop? Don't say "1/2 a^2 + v + d = 0"; that's just something you memorized in a physics class. Where does the power of two come from? Why the half? If you don't even know how to answer this question I don't really want you driving on the road with me, to be honest. Most people learn patterns of behaviors that allow them to survive well enough most of the time in familiar situations, but fail when presented with anything novel. The world is so much more interesting than can be properly appreciated by only responding to it with the standard learned behaviors.

    Finally, if you do expect to spend your career implementing specific instances of solved problems then also expect to be replaced by a computer programmed by someone who *does* understand mathematics sometime in the not-too-distant future.

THEGODDESSOFTHENETHASTWISTINGFINGERSANDHERVOICEISLIKEAJAVELININTHENIGHTDUDE

Working...