vote up 30 vote down star
23

Since Graduating from a very small school in 2006 with a badly shaped & outdated program (I'm a foreigner & didnt know any better school at the time) i've come to realize that i missed a lot of basic concepts from a mathematical & software perspective that are mostly the foundations of other higher concepts.

i.e. i tried to listen/watch the open courseware from MIT on Introduction to Algorithms but quickly realized i was missing several mathematical concepts to better understand the course.

So what are the core mathematical concepts a good software engineer should know? and what are the possible books/sites you will recommend me?

flag

23 Answers

vote up 42 vote down check

Math for Programmers. A good read.

link|flag
Yegge's article is very thoroughly & it provides several other resources for further reading. – Jose B. Sep 10 '08 at 15:35
Great link, thanks! – Jason Down Oct 11 '08 at 0:49
vote up 0 vote down

I think algorithms and theory are of great importance. Being able to come up with a fast, and correct solution is what differentiates good programmers from the rest. Also, being able to prove your algorithm (using standard proof techniques-- induction, contradiction, etc) is equally important.

link|flag
vote up 1 vote down

Back in school, on of my instructors said for business applications, all you need to know know add, subtract, multiply, and divide. All other formulas the requester will know and inform you what is needed. Now realize that this is for financing reporting and application focused school. To this day, this has held true for me. I have never once needed to know more than that.

link|flag
vote up 0 vote down

Why is everybody including probability and statistics in the gold list without mentioning calculus? One cannot understand what probability and statistics are about without at least a working knowledge of limits, derivatives, integrals and series. And all in all, calculus (together with linear algebra) is the workhorse of all mathematics.

link|flag
vote up 0 vote down
  • Boolean Algebra
  • Set Theory
link|flag
vote up 0 vote down

Well, that depends on what you goal is. As someone said, Linear Algebra, Combinatorics, Probability and Statistics and Graph Theory are important if you're into solving hard problems. Asymptotic growth of functions (bit-Oh notation) is very important. You will also need to master summations and series if you need to work on analyzing some more complex algorithms (see the appendix on Cormen&others Intro to Algorithms).

Even if you're into "Java for the enterprise" or "server-side PHP", you will find some Statistics and Algorithm Complexity (hence combinatorics, induction, summations, series, etc) useful when your boss wants you to get the server to work faster, and adding new hardware doesn't seem to help. :-) I've been through that once.

link|flag
vote up 1 vote down

Chapter 1 of "The Art of Computer Programming" aims to provide exactly this.

link|flag
vote up 5 vote down

Concrete Mathematics covers all the major topics.

link|flag
Except Boolean algebra. – mamama Dec 2 '08 at 13:08
vote up 7 vote down

In order of importance:

  • Counting (needed for loops)
  • Addition, subtraction, multiplication, division.
  • Algebra (only really required to understand the use of variables).
  • Boolean algebra, boolean logic and binary.
  • Exponents and logarithms (i.e. understand O(n) notation).

Anything more advanced than that is usually algorithm-specific or domain-specific. Depending on which areas you are interested in, the following may also be relevant:

  • Linear algebra and trigonometry (3D visualization)
  • Discrete mathematics and set theory (database design, algorithm design, compiler design).
  • Statistics (well, for statistical and/or scientific/economic applications. possibly also useful for algorithm design).
  • Physics (for simulations).

Understanding functions is also useful (don't remember what the mathematical term is for that area), but if you know how to program you probably already do.

My point being: A ten year old should know enough mathematics to be able to understand programming. There isn't really much math required for the basic understanding of things. It's all about the logic, really.

link|flag
vote up 0 vote down
  • Boolean Algebra
  • Set Theory
  • Discrete Math
link|flag
vote up 1 vote down

Here is a simple one that baffles me when I see developers that don't understand it:
- Order of Operations

link|flag
Agreed. I used to tutor intro CS courses and it took me awhile to realize that some students were having problems grasping this. It's such a natural thing for most of us to process that it's difficult at first to believe that some don't. – Bill the Lizard Sep 9 '08 at 19:45
Same here. I always used to kind of stall out when I realized they didn't have any idea what I was talking about. – Electrons_Ahoy Oct 24 '08 at 20:47
vote up 10 vote down

I would go with the fields that Landon stated:

Discrete Math, Linear Algebra, Combinatorics, Probability and Statistics, Graph Theory

and add mathematical logic.

This would give you a grip on most fields of CS. If you want to go into special fields, you have to dive into some areas especially:

Computer graphics -> Linear Algebra
Gaming -> Linear Algebra, Physics
Computer Linguistics -> Statistics, Graph Theory
AI -> Statistics, Stochastics, Logic, Graph Theory
link|flag
vote up 6 vote down

For discrete math, here is an awesome set of 20 lectures from Arsdigita University. Each is about an hour and twenty minutes long.

link|flag
vote up 0 vote down

Discrete Math
Linear Algebra
Combinatorics
Probability and Statistics
Graph Theory

link|flag
vote up 13 vote down

Boolean algebra is fundamental to understanding control structures and refactoring. For example, I've seen many bugs caused by programmers who didn't know (or couldn't use) deMorgan's law. As another example, how many programmers immediately recognize that

if (condition-1) {
    if (condition-2) {
        action-1
    } else {
        action-2
} else {
    action-2
}

can be rewritten as

if (condition-1 and condition-2) {
    action-1
} else {
    action-2
}

Discrete mathematics and combinatorics are tremendously helpful in understanding the performance of various algorithms and data structures.

As mentioned by Baltimark, mathematical induction is very useful in reasoning about loops and recursion.

Set theory is the basis of relational databases and SQL.

By way of analogy, let me point out that carpenters routinely use a variety of rule-of-thumb techniques in constructing things like roofs and stairs. However, a knowledge of geometry allows you to solve problems for which you don't have a "canned" rule of thumb. It's like learning to read via phonetics versus sight-recognition of a basic vocabulary. 90+% of the time there's not much difference. But when you run into an unfamiliar situation, it's VERY nice to have the tools to work out the solution yourself.

Finally, the rigor/precision required by mathematics is very useful preparation for programming, regardless of specific technique. Again, many of the bugs in programming (or even specifications) that I've seen in my career have sloppy thinking at their root cause.

link|flag
+1 for your example – Federico Ramponi Oct 24 '08 at 15:39
+1 for your example – Trae Feb 5 at 23:50
vote up 3 vote down

I think it depends on your focus. A few years ago I purchased the set of Art of Computer Programming by Donald Knuth. After looking at the books I realized pretty much everything is calculus proofs. If you're interested in developing your own generic algorithms and proofs for them, then I recommend being able to understand the above books since its what you'd be dealing with in that world. On the other hand if you only want/need to use various sorting/searching/tree/etc... routines then big O notation at a minimum, boolean math, and general algebra will be fine. If you're dealing with 3D then geometry and trig as well.

I tend to be more on the using side than making proofs, and while I'd like to think I've done some clever things over the years I've never sat down and developed a new sorting routine. The best advice I can give is learn what you need for your field, but expose yourself to higher levels so you know it exists and how much more there is to learn, you won't get much growth otherwise.

link|flag
vote up 3 vote down

I would say boolean logic. AND, OR, XOR, NOT. I found as programmer we use this more often than the rest of math concepts.

link|flag
vote up 6 vote down

Big O notation in general algorithm analysis, and in relation to standard collections (sorting, retrieval insertion and deletion)

link|flag
vote up 8 vote down

"Proof by induction" is a core mathematical concept for programmers to know.

link|flag
Really? For what programming-specific tasks is this required? – Anders Sandvig Sep 9 '08 at 18:21
@Anders - Proving proofs in the case of algorithm development. – Rob Sep 9 '08 at 19:56
Luckily, induction proofs are some of the easiest imo. – Simucal Nov 13 '08 at 7:26
vote up 2 vote down

Basic Algebra and Statistics are good starting points, and the foundation for a lot of other fields.

link|flag
vote up 0 vote down

My math background is really poor (Geologist by training), but I took a discrete math class in high school and I use the concepts every day as a programmer. It is probably the most valuable class I took in all of my education as it relates to my current profession.

link|flag
vote up 1 vote down

There was a book that was recommended...the title was something like Concrete Mathematics. It was recommended in a few questions.

link|flag
vote up 6 vote down

Start with what we CS folks call "discrete math". Calculus and linear algebra can come in quite handy too because they get your foot in the door to a lot of application domains. Once you've mastered those three, go for probability theory. Those 4 will get you to competency in 95% (I made that up) of application domains.

link|flag
Some people call "discrete math" "finite math". I believe they are both the same thing. – Thomas Owens Oct 24 '08 at 15:31

Your Answer

Get an OpenID
or

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