vote up 37 vote down star
26

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 40 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 39 vote down

While advanced mathematics may not be required for programming (unless you are programming advanced mathematics capability) the thought process of programming and mathematics are very similar. You begin with a base of known things (axioms, previously proven theories) and try to get to someplace new. You cannot skip steps. If you do skip steps, then you are required to fill in the blanks. It's a critical thought process that makes the two incredibly similar.

Also, mathematicians and programmers both think critically in the abstract. Real world things are represented by objects and variables. The ability to translate from concrete to abstract also links the two fields.

There's a very good chance that if you're good at one, you will probably be good at the other.

link|flag
show 3 more comments
vote up 23 vote down

computer science != programming

OK, seriously, I know good a bad programmers who were English and Psychology majors and some that were Computer Science majors. Some very famous guys that I admire as developers didn't have a CS background. Larry Wall(Perl), for example, was a linguist. On the other hand, it helps to know something about the domain you are working on because then you can at least see if your data makes sense and help your customer/users drill down to what they really want. And yes, there's the issue of computational complexity and efficient data structures and program correctness. That's stuff you learn in Computer Science and that's useful to know in almost any domain, but it's neither necessary nor sufficient.

link|flag
show 5 more comments
vote up 17 vote down

I have a maths degree, but I can't remember requiring that maths a single time in my career. It was useful in terms of training my mind for logical thinking, but I've not written any code using fluid dynamics, quantum theory or Markov Chains. (The last is the most likely to come up, I suspect.)

Most line-of-business developers won't need advanced maths most of the time. Sometimes knowing trigonometry can help, and certainly being able to understand enough maths to implement algorithms described mathematically can be important - but beyond that? Nah.

Don't forget that most programmers aren't advancing computer science - they're building applications. I don't need to know advanced engineering to drive a modern car, even though that car has almost certainly been improved through advanced engineering.

link|flag
2  
Math degree? Then you know it's not just numbers. I have two math degrees, and use the content often: boolean algebra to analyze/simplify logic, automata/language theory for DSL construction, algebra for big-O performance analysis, etc. – joel.neely Jan 13 '09 at 12:52
show 2 more comments
vote up 10 vote down

I would argue that having advanced logic (discrete) math can really help. That along with set theory. When dealing with common computer programs, these disciplines can help a lot. However, a lot of the other math I took in university was calculus, which as far as I can see, had very limited usage. Since 90% (or something like that) of programming is doing business apps with very simple math, I would say that for the most part, you can get by with very little math knowledge. However, a good understanding of boolean algebra, logic, discrete math, and set theory can really put you up to that next level.

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
vote up 8 vote down

It depends on what your are doing. If you do a lot of 3D programming, 3D geometric is certainly necessary knowledge, don't you agree? ;-) If you want to create a new image format like JPG or a new audio format like MP3, you are also pretty lost if you can't understand a cosine or fourier transformation, as these are the basics most lossy compression bases on. Also many other problems can be resolved better if you know your math rather well.

For many other programming tasks you will most likely not need a lot of math.

link|flag
vote up 5 vote down

What type of Programming? In my commercial experience, I have needed no advanced mathematics, but this is heavily dependent on the field you are in.

Computer graphics require a large amount of advanced maths. A lot of academic computer programming requires advanced maths.

So saying there tends to be a correlation between people who are good at maths and people who are good at programming.

Hope this wishy washy answer helps.

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 4 vote down

Yeah, there is no need for advanced mathematics - if you are programming commercial - off the shelf software.

However when dealing with hardcore stuff such as:

  • Calculating trajectories to control a robot
  • Creating AI-like applications to support uncertainty and automatic reasoning
  • Playing with 3-D motion and graphics

Some advanced mathematics knowledge might come in handy. And it's not like they are "out-of-this world" problems.

I had to create a software to try to "predict" the necessary amount of paper for an office (and it was hell just to find out the best way to approximate values).

You have to be careful, though, because it is easy to get lost when using advanced things - there is a friend of mine who resorted to using Turing to store the state of a dynamic menu just to display it correctly - humm... perhaps he wnet too far in his imagination.

link|flag
show 1 more comment
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 3 vote down

Mathematics are needed for developers in some fields but are almost useless in others.

If you are a game developer and have to work with physics a lot - understanding of math is crucial. If you are working with advanced visual controls - you could not do much without geometry. If you're planning to do some financial calculations - it would REALLY help to have solid knowledge of statistics.

On the other hand over last 5 years I had only 2 or 3 projects where ANY amount of math was required at all. Of these there was only 1 occurrence when a Google search did not help.

At the end of the day even financial calculations are very often something your clients do for you and give you formulas to implement.

So if you're in 'applied software' business you are likely to never use your math degree. If you're in academic software maths are crucial.

link|flag
show 1 more comment
vote up 2 vote down

Of course it depends on what kind of programmer you want to be, or better what kind of programmer your employers want you to be. I think calculus and algebra are essentials, statistic and linear programming is indeed a good tool to have in your briefcase, maybe analysis (derivative, integrals, functions...) could be done without. But if you want to know how things work skin-deep (electronics, for example, or some non trivial algorhytms) "advanced" math is something you'd better not go without anywhere.

link|flag
vote up 2 vote down

Advanced maths knowledge is vital if you're going to be writing a new programming language. Or you need write your own algorithms.

However, for most day-to-day programming - from websites to insurance processing applications - only basic maths are necessary.

link|flag
vote up 2 vote down

Learning higher math, for most programmers, is important simply because it bends your brain to think logically, in a step-by-step manner to get from one thing to another.

Very few programming jobs, though, require anything above high school math. I've used linear algebra once. I've never used calculus. I use algebra every day.

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 1 vote down

Most of the programming I have done involved physics simulations for research including things like electromagnetism, quantum mechanics and structural mechanics. Since the problem domains have advanced mathematics associated with them I would be hard pressed to solve them without using advanced mathematics.

So the answer to your question is - it depends on what you are trying to do.

link|flag
vote up 1 vote down

IMO, you probably need an aptitude for mathematics, without necessarily having much knowledge in the field. So the things you require to be good at maths are similar to the things you require to be good at programming.

But in general, I can't remember the last time I used any sort of advanced maths in day-to-day programming, so no.

link|flag
vote up 1 vote down

Someone with a solid mathematical (which is not merely arithmetic) or logic background will cope well with algorithms, variable use, conditional reasoning and data structures.

  • Not everyone can design a UI.
  • Not everyone can make efficient code.
  • Not everyone can comment and document clearly.
  • Not everyone can do a good algorithm

Mathematics will help you to a point, but only to a point.

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 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

See this earlier post

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 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 don't agree that you need advanced mathematics. I studies Physics along side Computer Science, so I had the advanced courses, but I don't think it's been necessary for any projects. The knowledge I gained before University was more than enough.

link|flag
vote up 0 vote down

Nope, don't need math. Haven't done any since I graduated, and probably forgotten what little calculus I mastered anyway.

Think of it like a car. How much math/physics do you think is behind things like traction control and ABS braking? Lots. How much math do you need to know to use those tools? None.

EDIT: One thing to add. Industry is probably important here. A programmer working at a research firm, or writing embedded traction control systems for that car, is probably far more likely to need math than your average business tool programmer.

link|flag
vote up 0 vote down

I don't think that higher math is a requirement for being a good programmer - as always it depends on what you are coding.

Of course if you are in 3D graphics programming, you'll need matrices and stuff. As author of business software, you'll probably need statistics math.

But being a professional programmer for almost 10 years (and another 10 years amateur) "higher math" is not something that I needed regularily. In about 99.8% of all cases it's just plus, minus, division and multiplication in some intelligent combinations - in most cases it's about algorithms, not math.

link|flag
vote up 0 vote down

See also Is Programmng == Math? from stackoverflow.

While I don't think it's required for programming, I can't tell you how many times I've been able to use linear algebra concepts to write a clear and short solution to replace a convoluted (and sometimes incorrect) one. When dong any graphics or geometry (and even some solver) work, knowledge of matrices and how to work with them has also been extremely useful.

link|flag
vote up 0 vote down

There are plenty of programming tasks that can be done well without a background in advanced math. It is probably safe to say the majority of programming jobs available will rarely require anything more than high school level math. But you are not going to write the software that helps put the shuttle in space by hacking away with your freshman college algebra math level. So, while advanced math is usually not vital to many programming tasks the more difficult problems will absolutely require it. Studying math also teaches valuable problem solving skills that can be used almost anywhere. I guess you could say it's not necessary most of the time, but it's certainly going to help almost all of the time.

link|flag
vote up 0 vote down

For your general GUI and Web applications only basic mathematics knowledge will ever be needed.

Once a lifetime you might have an odd project where you need calculus or linear algebra.

(If you do 3D game programming or some other specific field of programming, you might need it everyday thou)

link|flag
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.