What are the core mathematical concepts a good developer should know? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:30:31Zhttp://stackoverflow.com/feeds/question/52176http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know31What are the core mathematical concepts a good developer should know?Jose B.2008-09-09T15:33:58Z2008-11-13T07:25:14Z
<p>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.</p>
<p>i.e. i tried to listen/watch the open courseware from MIT on <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/CourseHome/" rel="nofollow">Introduction to Algorithms</a> but quickly realized i was missing several mathematical concepts to better understand the course.</p>
<p>So what are the core mathematical concepts a good software engineer should know? and what are the possible books/sites you will recommend me?</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52192#521926Answer by Ben Collins for What are the core mathematical concepts a good developer should know?Ben Collins2008-09-09T15:37:22Z2008-09-09T15:37:22Z<p>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.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52195#521951Answer by Thomas Owens for What are the core mathematical concepts a good developer should know?Thomas Owens2008-09-09T15:38:21Z2008-09-09T15:38:21Z<p>There was a book that was recommended...the title was something like Concrete Mathematics. It was recommended in a few questions.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52197#521970Answer by JasonS for What are the core mathematical concepts a good developer should know?JasonS2008-09-09T15:39:51Z2008-09-09T15:39:51Z<p>My math background is really poor (Geologist by training), but I took a <a href="http://en.wikipedia.org/wiki/Discrete_mathematics" rel="nofollow">discrete math</a> 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.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52202#522022Answer by JosephStyons for What are the core mathematical concepts a good developer should know?JosephStyons2008-09-09T15:40:50Z2008-09-09T15:40:50Z<p>Basic Algebra and Statistics are good starting points, and the foundation for a lot of other fields.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52205#522058Answer by Baltimark for What are the core mathematical concepts a good developer should know?Baltimark2008-09-09T15:42:11Z2008-09-09T15:42:11Z<p>"Proof by induction" is a core mathematical concept for programmers to know. </p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52231#5223143Answer by Gulzar for What are the core mathematical concepts a good developer should know?Gulzar2008-09-09T15:55:21Z2008-09-09T15:55:21Z<p><a href="http://steve-yegge.blogspot.com/2006/03/math-for-programmers.html" rel="nofollow">Math for Programmers</a>. A good read.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52233#522336Answer by Corin for What are the core mathematical concepts a good developer should know?Corin2008-09-09T15:57:05Z2008-09-09T15:57:05Z<p><a href="http://en.wikipedia.org/wiki/Big_O_notation" rel="nofollow">Big O notation</a> in general algorithm analysis, and in relation to standard collections (sorting, retrieval insertion and deletion)</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52260#522603Answer by Jimmy Chandra for What are the core mathematical concepts a good developer should know?Jimmy Chandra2008-09-09T16:11:36Z2008-09-09T16:11:36Z<p>I would say boolean logic. AND, OR, XOR, NOT.
I found as programmer we use this more often than the rest of math concepts.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52284#522843Answer by ddowns for What are the core mathematical concepts a good developer should know?ddowns2008-09-09T16:26:43Z2008-09-09T16:26:43Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52338#5233813Answer by joel.neely for What are the core mathematical concepts a good developer should know?joel.neely2008-09-09T16:57:00Z2008-09-09T16:57:00Z<p>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</p>
<pre><code>if (condition-1) {
if (condition-2) {
action-1
} else {
action-2
} else {
action-2
}
</code></pre>
<p>can be rewritten as</p>
<pre><code>if (condition-1 and condition-2) {
action-1
} else {
action-2
}
</code></pre>
<p>Discrete mathematics and combinatorics are tremendously helpful in understanding the performance of various algorithms and data structures.</p>
<p>As mentioned by Baltimark, mathematical induction is very useful in reasoning about loops and recursion.</p>
<p>Set theory is the basis of relational databases and SQL.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52349#523490Answer by Landon for What are the core mathematical concepts a good developer should know?Landon2008-09-09T17:03:47Z2008-09-09T17:03:47Z<p>Discrete Math<br />
Linear Algebra<br />
Combinatorics<br />
Probability and Statistics<br />
Graph Theory </p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52363#523636Answer by Corey for What are the core mathematical concepts a good developer should know?Corey2008-09-09T17:12:10Z2008-09-09T17:12:10Z<p>For discrete math, <a href="http://video.google.com/videoplay?docid=-2965569821331370765&ei=Ua3GSODbC5Gk-wH328G6Dg&q=arsdigita+discrete" rel="nofollow">here</a> is an awesome set of 20 lectures from Arsdigita University. Each is about an hour and twenty minutes long.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52367#5236710Answer by Ralph Rickenbach for What are the core mathematical concepts a good developer should know?Ralph Rickenbach2008-09-09T17:13:28Z2008-09-09T17:13:28Z<p>I would go with the fields that Landon stated:</p>
<blockquote>
<p>Discrete Math, Linear Algebra,
Combinatorics, Probability and
Statistics, Graph Theory</p>
</blockquote>
<p>and add mathematical logic.</p>
<p>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:</p>
<pre><code>Computer graphics -> Linear Algebra
Gaming -> Linear Algebra, Physics
Computer Linguistics -> Statistics, Graph Theory
AI -> Statistics, Stochastics, Logic, Graph Theory
</code></pre>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52370#523701Answer by Daniel Auger for What are the core mathematical concepts a good developer should know?Daniel Auger2008-09-09T17:13:47Z2008-09-09T17:13:47Z<p>Here is a simple one that baffles me when I see developers that don't understand it:<br />
- Order of Operations</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52437#524370Answer by mrbradleyt for What are the core mathematical concepts a good developer should know?mrbradleyt2008-09-09T17:38:12Z2008-09-09T17:38:12Z<ul>
<li>Boolean Algebra</li>
<li>Set Theory</li>
<li>Discrete Math</li>
</ul>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52549#525497Answer by Anders Sandvig for What are the core mathematical concepts a good developer should know?Anders Sandvig2008-09-09T18:34:09Z2008-09-09T18:34:09Z<p>In order of importance:</p>
<ul>
<li>Counting (needed for loops)</li>
<li>Addition, subtraction, multiplication, division.</li>
<li>Algebra (only really required to understand the use of variables).</li>
<li>Boolean algebra, boolean logic and binary.</li>
<li>Exponents and logarithms (i.e. understand O(n) notation).</li>
</ul>
<p>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:</p>
<ul>
<li>Linear algebra and trigonometry (3D visualization)</li>
<li>Discrete mathematics and set theory (database design, algorithm design, compiler design).</li>
<li>Statistics (well, for statistical and/or scientific/economic applications. possibly also useful for algorithm design).</li>
<li>Physics (for simulations).</li>
</ul>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52751#527515Answer by Bill the Lizard for What are the core mathematical concepts a good developer should know?Bill the Lizard2008-09-09T19:52:41Z2008-09-09T19:52:41Z<p><a href="http://www-cs-faculty.stanford.edu/~knuth/gkp.html" rel="nofollow">Concrete Mathematics</a> covers all the major topics.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/93687#936871Answer by Michael Dorfman for What are the core mathematical concepts a good developer should know?Michael Dorfman2008-09-18T15:39:46Z2008-09-18T15:39:46Z<p>Chapter 1 of "The Art of Computer Programming" aims to provide exactly this.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/215199#2151990Answer by sergio_petralia for What are the core mathematical concepts a good developer should know?sergio_petralia2008-10-18T15:58:25Z2008-10-18T15:58:25Z<p>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).</p>
<p>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.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/234030#2340300Answer by Fortyrunner for What are the core mathematical concepts a good developer should know?Fortyrunner2008-10-24T15:29:16Z2008-10-24T15:29:16Z<ul>
<li>Boolean Algebra </li>
<li>Set Theory</li>
</ul>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/234137#2341370Answer by Federico Ramponi for What are the core mathematical concepts a good developer should know?Federico Ramponi2008-10-24T15:58:05Z2008-10-24T19:47:35Z<p>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 <em>all</em> mathematics.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/235169#2351691Answer by Mike Wills for What are the core mathematical concepts a good developer should know?Mike Wills2008-10-24T20:36:38Z2008-10-24T20:36:38Z<p>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.</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/286431#2864310Answer by Scott Wegner for What are the core mathematical concepts a good developer should know?Scott Wegner2008-11-13T07:25:14Z2008-11-13T07:25:14Z<p>I think algorithms and theory are of great importance. Being able to come up with a fast, and <em>correct</em> 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.</p>