vote up 36 vote down star
25

Hello all,

I happened to debate with a friend during college days whether advanced mathematics is necessary for any veteran programmer. He used to argue fiercely against that. He said that programmers need only basic mathematical knowledge from high school or fresh year college math, no more no less, and that almost all of programming tasks can be achieved without even need for advanced math. He argued, however, that algorithms are fundamental & must-have asset for programmers.

My stance was that all computer science advances depended almost solely on mathematics advances, and therefore a thorough knowledge in mathematics would help programmers greatly when they're working with real-world challenging problems.

I still cannot settle on which side of the arguments is correct. Could you tell us your stance, from your own experience?

flag
show 2 more comments

51 Answers

1 2 next
vote up 38 vote down check

To answer your question as it was posed I would have to say, "No, mathematics is not necessary for programming?" However, as other people have suggested in this thread, I believe there is a correlation between understanding mathematics and being able to "think algorithmically". That is, to be able to think abstractly about quantity, processes, relationships and proof.

I started programming when I was about 9 years old and it would be a stretch to say I had learnt much mathematics by that stage. However, with a bit of effort I was able to understand variables, for loops, goto statements (forgive me, I was Vic 20 BASIC and I hadn't read any Dijkstra yet) and basic co-ordinate geometry to put graphics on the screen.

I eventually went on to complete an honours degree in Pure Mathematics with a minor in Computer Science. Although I focused mainly on analysis, I also studied quite a bit of discrete maths, number theory, logic and computability theory. Apart from being able to apply a few ideas from statistics, probability theory, vector analysis and linear algebra to programming, there was little maths I studied that was directly applicable to my programming during my undergraduate degree and the commercial and research programming I did afterwards.

However, I strongly believe the formal methods of thinking that mathematics demands — careful reasoning, searching for counter-examples, building axiomatic foundations, spotting connections between concepts — has been a tremendous help when I have tackled large and complex programming projects.

Consider the way athletes train for their sport. For example, footballers no doubt spend much of their training time on basic football skills. However, to improve their general fitness they might also spend time at the gym on bicycle or rowing machines, doing weights, etc.

Studying mathematics can be likened to weight-training or cross-training to improve your mental strength and stamina for programming. It is absolutely essential that you practice your basic programming skills but studying mathematics is an incredible mental work-out that improves your core analytic ability.

link|flag
vote up 1 vote down

Necessary != Sufficient

Come on guys! the title says "necessary", I would argue that it is at best a sufficient condition to be able to program well. Just like their are many sufficient but not necessary conditions: 5 yrs experience, a CS Degree, or any scientific background.

Some could even argue that being a Poet or English major could make you a good API designer or that an Artist could be good at UI/Web programming.

But these are obviously not guarantees, just like knowing math may not make you a good programmer, but you could hack out some C++ or F# like the rest anyway...

link|flag
vote up 0 vote down

I admit that I have never used any advanced math in programming except in some pet projects that are about math topics.

That said, I do enjoy to working together with people that are bright enough to grok maths. Mastering complex and difficult stuff helps to get your brain into shape to solve complex and difficult programming problems.

link|flag
vote up 0 vote down

I have a degree in math, and I can't say it has helped me in any way. (I develop general web apps, nothing scientific). I enjoy working with other developers with non-math degrees because they seem to think outside my "math" box and force me to do the same.

link|flag
vote up 0 vote down

I'm going to sit right on the fence with you here... there are a lot of good arguments both for and against, and all of most of them equally valid. So which is the right answer?

Both...depending on the situation. This isn't a case of "if you're not with us, you're against us".

There are many aspects of math that do make areas of programming much easier: geometry, algebra, trigonometry, linear equations, quadratic equations, derivatives etc. In fact a lot of the highest performance "algorithms" have mathematical principles at their heart.

As Jon pointed out, he's got a degree in maths but in the programming world he barely uses that knowledge. I propose that he does use maths far more than he probably considers, albeit unconsiously...okay, maybe not quantum mechanics, but the more basic principles. Every time we lay out a GUI we use mathematical principles to design in an aesthetically pleasing manner, we don't do that consciously - but we do do it.

In the business world, we rarely think about the maths we use in our software - and in a lot of aspects of the software we write, it's just standard algorithms to complete the same monotonous tasks to help the business world catch up with the technology that's available.

It would be quite easy to skip through a whole career without ever consciously using math in our software. However, having an understanding of maths helps make many aspects of programming simpler.

I think the question really boils down to: "Is advanced math necessary for programming?" and of course, to that question the answer is no... unless you're going to start getting into writing and/or cracking encryption algorithms (which is a fascinating subject) or working with hydraulic equations as Mil pointed out or flow control systems (as I have in the past). But I would have add that while basic math may not be necessary, it will make your life a lot easier.

link|flag
vote up 0 vote down

To answer the question: no.

Mathematical talent and programming talent: strong correlation, little to no causality.

One is certainly not a prerequisite for the other, and beefing up your math skills isn't going to make you a better programmer unless you're programming in one of the specialized domains where math is pretty integral (3D graphics, statistics programming, etc.)

That said, of course a math background will certainly not hurt and will greatly help you in some cases. And as others have noted the thought processes involved in mathematics and programming are quite similar; if you have an talent for one you'll probably find you have a talent for the other.

If I was going to recommend a math requirement for programmers it'd be some basic statistics. Nearly all programming jobs require a little reporting of some sort.

The need for mathematics does increase a little as you start to do more of the advanced and/or fun stuff. Games are pretty math-heavy, so are performance-critical applications where you really need to understand the costs of different algorithms.

link|flag
vote up 1 vote down

I used a great deal of math when I was solving problems in solid mechanics and heat transfer using computers. Linear algebra, numerical methods, etc.

I never tap into any of that knowledge now that I'm writing business applications that deliver information from relational databases to web-based user interfaces.

I still would recommend a better math background to anyone.

Discrete math is very helpful to a developer; I have no formal training in it.

I think the techniques laid out in "Programming Collective Intelligence" are far from the stuff I did as an ME and could fall into the business apps that I'm doing now. Netflix has certainly made a nice business out of it. This group intelligence stuff appears to be on the rise.

link|flag
vote up 0 vote down

Certian kinds of math I think are indispensible. For instance, every software engineer should know and understand De Morgan's laws, and O notation.

Other kinds are just very useful. In simulation we often have to do a lot of physics modeling. If you are doing graphics work, you will often find yourself needing to write coordinate transformation algorithms. I've had many other situations in my 20 year career where I needed to write up and solve simultanious linear equations to figure out what constants to put into an algorithm.

link|flag
vote up 0 vote down

Two things come to mind:

  • Context is all-important. If you're a games programmer or in an engineering discipline, then math may be vital for your job. I do database and web development, therefore high school-level math is fine for me.
  • You are very likely to be reusing someone else's pre-built math code rather than reinventing the wheel, especially in fields like encryption and compression. (This may also apply if you're in games development using a third party physics tool or a 3D engine.) Having a framework of tried and tested routines for use in your programs prevents errors and potential security weaknesses - definitely a good thing.
link|flag
vote up 0 vote down

Depends on what you do: Web developement, business software, etc I think for this kind of stuff you don't need math.

If you want to do computer graphics, audio/video processing, AI, cryptography, etc then you NEED a math background, otherwise you can simply not do it.

link|flag
vote up 0 vote down

Hmm... in the case of such subjective questions, why can't we accept more than one answer? Mark Reid has just posted an interesting reply, and while I thought that I could accept his answer alongside the one I chose earlier, the system automatically unaccepted the former.

Anyway, I kept Mark's answer as accepted to bring new blood into this question. ;)

Thanks everyone so far; I was totally impressed with the instant & focused reactions from the community.

link|flag
vote up 0 vote down

Depends on the programming task. I would put 'take data from a database and display it on a website' style programming towards the not-so-much side and then 'video games' on the other side (i work in games and I feel like I use some random different flavor of math every day, and would probably use more if i knew more).

link|flag
vote up 0 vote down

In some programming I imagine that math would be most helpful, but not to be a programmer. I'm lucky if I can add 2+2 without my handy dandy calculator.

link|flag
vote up 0 vote down

Maths is as much about a way of thinking as it is about the skills themselves. And even that lies on several levels. Someone else noted that the analytical and abstraction skills common to maths are valuable to programming and that is one level. I would also argue that there is another level which contains precise analogues that carry from one to the other - for example the set theory behind relational databases, which is all hidden by the SQL semantics.

Very often the "best" - by which I mean most performant and concise - solutions are those which have a bit of maths behind them. If you start to think about your data-oriented programming problems as matrix manipulation, which many are, you can often find novel solutions form the world of maths.

Obviously it is not necessary to be a maths expert in order to program, anyone can be taught, but it is one of the skills that is worth having - and looking for in recruits.

link|flag
vote up 0 vote down

About the only useful things you can learn at university are theoretical.

link|flag
vote up 0 vote down

It's not required by a long shot, but...

as a trivial example--Without an understanding of geometry, you couldn't do a lot of stuff with squares and rectangles. (Every programmer has/gets geometry, so it's just an example).

Without Trig, there are certain things that are tough to do. Try to draw an analog clock with no understanding of trig--you can do it, but the process you have to go through is essentially re-inventing Trig.

Calculus is interesting. You'll probably never need it unless you design games, but calculus teaches you how to model things that act much more "Real world". For instance, if you try to model a tree falling, to get the speed right at every point along the arch you probably need a good deal of math.

On the other hand, it's just a matter of being exact. Anything you can do with calculus you can probably do with looping and approximations.

Beyond that, to make things even more life-like, you will probably need fractals and more advanced math.

If you are programming web sites and databases, you hardly need algebra 101.

link|flag
vote up 0 vote down

business programming: arithmetic, some algebra

engineering: numerical analysis

scientific programming: the sky's the limit

link|flag
vote up 5 vote down

The fundamental concept of maths is the following, devising, understanding, implementation, and use of algorithms. If you cannot do maths then it is because you cannot do these things, and if you cannot do these things then you cannot be an effective programmer.

Common programming tasks might not need any specific mathematical knowledge (e.g. you probably won't need vector algebra and calculus unless you're doing tasks like 3D graphics or physics simulations, for example), but the underlying skillsets are identical, and lack of ability in one domain will be matched by a corresponding lack of ability in the other domain.

link|flag
vote up 0 vote down

I feel this question (which I get quite a bit) is best answered with an analogy.

Many of us lift weights. Why? Is it because we're preparing for that day when we become a professional weightlifter? Will we ever encounter the lifting of weights as a job requirement?

Of course not. We lift weights because it exercises our muscles. It keeps us fit and in shape. A fit person will perform better in other areas: hiking, construction, running, sleeping, etc.

Learning mathematics is like weightlifting for the brain. It exercises the mind and keeps it in shape. You may never use calculus in your career, but your brain will be in better shape because of it.

link|flag
vote up 0 vote down

Programming is a tool of Computer Science.

In many area's of Programming math is in the back seat. You don't know how to quick sort download a module to do it for you. You don't understand elliptical curves, no problem buy an AES encryption module.


Now for Computer Science. Yes you need higher level math. No doubt about it. Cryptography, Operating Systems, Compiler Construction, Machine Learning, Programming Languages, and so on all require some form of higher math (Calculus, Discrete, Linear, Complex) to fully understand.

link|flag
vote up 1 vote down

See this earlier post

link|flag
vote up -1 vote down

for loops are the only thing you need these days.

link|flag
vote up 0 vote down

Statistical machine learning techniques are becoming increasingly important.

link|flag
vote up 0 vote down

If you need advanced mathematics in your daily job as programmer really depends on your tasks. I need them. The reason is I have to work with hydraulic calculations for piping systems to evaluate in code the piping system before it gets built. You never want to stand near a collapsing piping system because of under or overpressure. ;)

I guess for many other kinds of 'simulations of the real world' you will need advanced mathematics too.

link|flag
vote up 1 vote down

It's important to keep perspective. Learning math, advanced math, calc, etc. is great for thought processes and many programming positions expect and may make use of math and math concepts. But many programming jobs use little to no math at all.

Computer science, being a math discipline, of course requires lots of math. But few programming jobs are derivatives of comp sci. CS is a very specific discipline. There is a reason why IT schools now have Software Engineering as a separate discipline from CS. They are very different fields.

Comp Sci, for example, does not prepare you well for the world of most web applications. And software engineering does not prepare you well for compiler design and kernel development.

link|flag
vote up 1 vote down

Programming requires you to master, or at least learn, two subjects. Programming itself and what ever domain your program is for. If you are writing accounting software, you need to learn accounting, if you are programming robot kinematics, then you need to understand forward and reverse kinematics. Account might only take basic math skills, other domains take other types of math.

link|flag
vote up 2 vote down

I dont think advanced mathemetics knowledge is a requirement for a good programmer, but based on personal experience I think that programmers who have a better grasp at advanced maths also make better programmers. This may simply be due to a more logical mind, or a more logical outlook due to their experiences of solving mathematical problems.

link|flag
vote up 0 vote down

There are some good points to this question in my opinion.

As David Nehme posted here, computer science and programming are two very different subjects.

I find it perfectly possible that a programmer with very basic high-school and early college math skills may be a competent programmer. Not so sure about the computer science graduate, though.

As you correctly pointed out, the algorithm creation process is very much related to how you crunch math. Even if this is just a result of the type of mathmatical and analytical process you must accomplish to correctly design an algorithm.

I also think it very much depends on what you're doing, more than it depends on your job description or skills. For instance, if the programming and math are both tools to produce some effect, than you surely have to be competent with both (i.e.: you are making a modelization programme for some purpose). Although, if the programming is the ultimate objective of your activity, than math is most probably not required. (i.e.: you are making a web application)

link|flag
vote up 4 vote down

I agree with Chris. I would say "Yes", also. But this depends on your market as stated above. If you are simply creating some basic "off-the-shelf" applications or writing tools to help your everyday work...then math isn't nearly as important.

Engineering custom software solutions requires lots of problem solving and critical thinking. Skills that are most definitely enhanced when a mathematics background is present. I minored in Math with my Computer Engineering degree and I give credit to all of my math-oriented background as to why I'm where I am today.

That's my 2 cents, I can tell from reading above that many would not agree. I encourage all to consider that I'm not saying you can't have those skills without a math background, I'm simply stating that the skills are side-effects of having such a background and can impact software positively.

link|flag
vote up 10 vote down

I'll go against the grain here and say "Yes"

I switch from Civil Engineering to programming (Concrete Sucks!). My math background consists of the usual first year stuff, second and third year Calculus(Diff EQ, volume integrations, Series, Fourier and Laplace transforms) and a Numerical Analysis course.

I find that my math is incredibly lacking for computer programming. There are entire areas of Discrete math and logic that I am missing, and I only survive due to an extensive library of textbooks, Wikipedia and Wolfram. Most advanced algorithms are based on advanced math, and I am unable to develop advanced algorithms without doing extensive research (Essentially the equivalent to a half-course worth of work.) I am certainly unable to come up with NEW algorithms, as I just don't have the mathematical foundations as the shoulders of giants upon which to stand.

link|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.