What are the core mathematical concepts a good developer should know? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T08:30:31Z http://stackoverflow.com/feeds/question/52176 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know 31 What are the core mathematical concepts a good developer should know? Jose B. 2008-09-09T15:33:58Z 2008-11-13T07:25:14Z <p>Since Graduating from a very small school in 2006 with a badly shaped &amp; outdated program (I'm a foreigner &amp; didnt know any better school at the time) i've come to realize that i missed a lot of basic concepts from a mathematical &amp; 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#52192 6 Answer by Ben Collins for What are the core mathematical concepts a good developer should know? Ben Collins 2008-09-09T15:37:22Z 2008-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#52195 1 Answer by Thomas Owens for What are the core mathematical concepts a good developer should know? Thomas Owens 2008-09-09T15:38:21Z 2008-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#52197 0 Answer by JasonS for What are the core mathematical concepts a good developer should know? JasonS 2008-09-09T15:39:51Z 2008-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#52202 2 Answer by JosephStyons for What are the core mathematical concepts a good developer should know? JosephStyons 2008-09-09T15:40:50Z 2008-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#52205 8 Answer by Baltimark for What are the core mathematical concepts a good developer should know? Baltimark 2008-09-09T15:42:11Z 2008-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#52231 43 Answer by Gulzar for What are the core mathematical concepts a good developer should know? Gulzar 2008-09-09T15:55:21Z 2008-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#52233 6 Answer by Corin for What are the core mathematical concepts a good developer should know? Corin 2008-09-09T15:57:05Z 2008-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#52260 3 Answer by Jimmy Chandra for What are the core mathematical concepts a good developer should know? Jimmy Chandra 2008-09-09T16:11:36Z 2008-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#52284 3 Answer by ddowns for What are the core mathematical concepts a good developer should know? ddowns 2008-09-09T16:26:43Z 2008-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#52338 13 Answer by joel.neely for What are the core mathematical concepts a good developer should know? joel.neely 2008-09-09T16:57:00Z 2008-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#52349 0 Answer by Landon for What are the core mathematical concepts a good developer should know? Landon 2008-09-09T17:03:47Z 2008-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#52363 6 Answer by Corey for What are the core mathematical concepts a good developer should know? Corey 2008-09-09T17:12:10Z 2008-09-09T17:12:10Z <p>For discrete math, <a href="http://video.google.com/videoplay?docid=-2965569821331370765&amp;ei=Ua3GSODbC5Gk-wH328G6Dg&amp;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#52367 10 Answer by Ralph Rickenbach for What are the core mathematical concepts a good developer should know? Ralph Rickenbach 2008-09-09T17:13:28Z 2008-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 -&gt; Linear Algebra Gaming -&gt; Linear Algebra, Physics Computer Linguistics -&gt; Statistics, Graph Theory AI -&gt; Statistics, Stochastics, Logic, Graph Theory </code></pre> http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52370#52370 1 Answer by Daniel Auger for What are the core mathematical concepts a good developer should know? Daniel Auger 2008-09-09T17:13:47Z 2008-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#52437 0 Answer by mrbradleyt for What are the core mathematical concepts a good developer should know? mrbradleyt 2008-09-09T17:38:12Z 2008-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#52549 7 Answer by Anders Sandvig for What are the core mathematical concepts a good developer should know? Anders Sandvig 2008-09-09T18:34:09Z 2008-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#52751 5 Answer by Bill the Lizard for What are the core mathematical concepts a good developer should know? Bill the Lizard 2008-09-09T19:52:41Z 2008-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#93687 1 Answer by Michael Dorfman for What are the core mathematical concepts a good developer should know? Michael Dorfman 2008-09-18T15:39:46Z 2008-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#215199 0 Answer by sergio_petralia for What are the core mathematical concepts a good developer should know? sergio_petralia 2008-10-18T15:58:25Z 2008-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&amp;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#234030 0 Answer by Fortyrunner for What are the core mathematical concepts a good developer should know? Fortyrunner 2008-10-24T15:29:16Z 2008-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#234137 0 Answer by Federico Ramponi for What are the core mathematical concepts a good developer should know? Federico Ramponi 2008-10-24T15:58:05Z 2008-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#235169 1 Answer by Mike Wills for What are the core mathematical concepts a good developer should know? Mike Wills 2008-10-24T20:36:38Z 2008-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#286431 0 Answer by Scott Wegner for What are the core mathematical concepts a good developer should know? Scott Wegner 2008-11-13T07:25:14Z 2008-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>