up vote 46 down vote favorite
28
share [g+] share [fb]

What's the highest-level math you've used in the real world? What did you need it for? Where did you learn it (in school, by yourself)? (Incidentally, I do mean in a programming context, as this is a programming website.)

Note: I'm not wondering if mathematics is necessary for programming or the relationship between math and programming, and I'm not trying to figure out how much math to learn myself. Those are all good questions, but I was just wondering what the highest-level math you personally used in the real world. (You can decide what "highest-level" means for you personally as well.)

Perhaps it was for a domain-specific application. So your answer might be:

  • Computing projections and intersections in computer graphics
  • Quaternions because you work with 3-d rotations
  • Runge-Kutta or the finite element method for some differential equations
  • Fourier transform for some signal processing
  • Nothing beyond bit operations
  • "None at all"

I don't know! But I'm interested.

link|improve this question
feedback

closed as off topic by Jeremy Banks ʬʬʬ, Bill the Lizard Sep 20 '11 at 2:06

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

46 Answers

1 2

Useful:

  • Matrices - Comes up a lot in social network analysis and graphics
  • Geometry - I've found lots of use of sin/cos in even basic graphic work
  • Differential Equations - Useful to know, although I've never coded a diffy-q.

Good to know, haven't really used:

  • Derivatives and Integrals - just good to know about rates over time

Never used:

  • Calculus - limits, triple integration (but I am not a Mechanical Engineer), fields (but I am not an Electrical Engineer)

Things I wish I learned:

  • Statistics - I come across statistics regularly when I read HCI material, and this would be good for general statistical literacy anyway
link|improve this answer
feedback

There is founded suspicion that 95% of “Real World Programming” needs nothing cleverer than Arithmetics.

link|improve this answer
2  
What kind of mathematics is required to create a chip that allowed you to post this answer? – J.F. Sebastian Jan 16 '09 at 23:42
18  
@J.F. Sebastian: The kind needed to the remaining 5% of "Real World Programming". – Roberto Russo Jan 16 '09 at 23:51
2  
A small subset of Elementary Algebra at most. Joe The Programmer never spotted Artinian rings in his daily enterprise CRUD crap. – Roberto Russo Jan 17 '09 at 6:41
2  
I feel that my daily CRUD-crap needs more profound Computational Complexity Theory and P=NP conjecturing. – Roberto Russo Mar 6 '09 at 13:44
2  
This may be right but isn't what the question asked. – Jason Orendorff Nov 25 '09 at 19:24
show 3 more comments
feedback

I've learned these fields (I realize some of these are broken down along rather arbitrary lines):

  • continuous time signal analysis
  • discrete time signal analysis (DSP)
  • differential equations
  • vector calculus (and of course regular calculus)
  • discrete math (logic, boolean algebra, set theory, etc)
  • geometry
  • algebra
  • linear algebra / matrix math
  • statistics/probability
  • trigonometry
  • control theory

In writing software, the only ones on the list I haven't used are continuous time signal analysis (because everything in a computer is discrete, unless you go to great lengths to simulate continuous), and vector calculus. I have used regular calculus. Most of the math usage comes in writing games, but I've also had to use quite a bit for business applications (particularly logic and statistics). I've also spent a lot of time writing embedded apps (my degree is in electrical and computer engineering), hence the use of control theory, though I bet that would be useful in some computer games as well.

link|improve this answer
show 2 more comments
feedback

I've used a decent amount of graph theory for figuring out interactions in biological systems.

link|improve this answer
show 1 more comment
feedback

The highest-level was as an intern: queueing theory (for modelling performance of a packet network).

Beyond that, not much:

  • Big-O notation
  • Hexadecimal notation
  • Doing arithmetic with bitwise operations
  • Logic, especially "Proof by induction"
  • Elementary calculus (waveform analysis for signal processing)
link|improve this answer
show 2 more comments
feedback
up vote 6 down vote accepted

Here's a summary of the answers. The following subjects were mentioned a lot:

  • Linear algebra, including vectors and matrices
  • Statistics and probability
  • Calculus, mostly one variable but also some multivariable
  • Geometry, including trigonometry here
  • Discrete math, including combinatorics and graph theory

Differential equations were mentioned frequently. Some subjects (financial math, numerical analysis, Fourier transforms) were mentioned a few times, while a few people mentioned more unique subjects (control theory, queuing theory, complex variables, measure theory). On the flip side, some people have mentioned that their mathematical needs were very slim, being bounded from above by arithmetic, algebra, or calculus, depending on the person.

link|improve this answer
show 1 more comment
feedback

I used to do finite element analysis of non-linear problems in solid mechanics and heat transfer, so I've applied a great deal of the math I learned. I was a mechanical engineer, not a software developer, but we wrote a lot of code to supplement and customize the commercial packages that we used.

  1. Ordinary and partial differential equations, with all the attendant calculus.
  2. Numerical methods.
  3. Linear algebra.
  4. Tensor calculus for continuum mechanics of large deformation, large strain mechanics problems.
  5. Complex variables.
  6. Integral transforms (Laplace, Fourier, Hankel, etc.)

Now I do web apps for business - not as much math as my previous career. Statistics and discrete math are the most useful now.

link|improve this answer
show 1 more comment
feedback

Almost anything:

  • probability theory
  • integration and differentiation
  • linear algebra
  • algebra
  • vector/point calculations
  • And more (but I don't know the correct English words for them).

Ok, I like to work at math intensive applications ;-).

link|improve this answer
feedback

Differential equations, for moving part speeds in a number of multi-lever mechanical arrangements in my hobby electromechanical projects.

link|improve this answer
feedback

Being in research...

Linear Algebra (eigenvalues, matrix operations)
Combinatorics
Vector Calculus
Graph Theory
Maximum Likelihood and Bayesian analysis
...

link|improve this answer
feedback

Working in the financial industry, I use a lot of math related to money. Tax calculations, gain/loss, performance of portfolios. I learned most of this in college. The basic math skills came from high school, but applying it to finance was probably college.

I think it is relative to what you are programming. If you're programming accounting software, you are going to need to know all the credit, debit, depreciation math, et.al.

link|improve this answer
show 4 more comments
feedback

Robotics use matrices for kinematics and inverse kinematics as well as a lot of 3D geometry and vector calculations.

link|improve this answer
feedback

Algebra has solved most of my computing problems.

I have to stop and do some Boolean algebra on occasion.

Some of the engineering apps I worked on required some basic geometry.

And a lot of the stuff I learned in intro to logic applied to the SQL sets.

Mostly learned in college, some in high school.

link|improve this answer
feedback

Statistics

As a data warehouse developer, I get giddy when people want to do more than just average some numbers. I try to explain that while average is a valuable piece of information it doesn't even begin to profile your data set.

When I begin to show them Medians and Stdev and histograms, they back away slowly.

link|improve this answer
2  
You cant stop with medians and Stdev, they're the least interesting parts! – Kent Fredric Jan 17 '09 at 7:24
feedback

Past a certain point, math doesn't really come in ladders -- rather than lower and higher levels, it kind of branches out profusely, and you learn what you need, or what you're interested in...

Graphics programming is my main thing, and I've used a lot of calculus and linear algebra for it, as well as for other purposes, plus the projective geometry which really constitutes "3-D math".

I've used Fourier transforms for evaluating filter designs and stuff (although strangely enough I haven't needed to actually use an FFT yet), and probability and statistics for data compression as well as Monte Carlo methods.

I learned most of this math in college. But, when using math for a particular purpose, at the very minimum you're likely to pick up bits and pieces of math you didn't have before; and sometimes, you end up exploring some field you hadn't even heard of.

link|improve this answer
show 3 more comments
feedback

Linear equations for a graphics project. ["Real world" being a flexible concept]

Also used some when trying to figure out how much kids tickets cost. [My cousin booked all the seats and I knew how much the Seniors and Adults cost. He gave us the total amount, but couldnt remember how much the Kids tickets cost... to complicate things, we had bought tickets in 2 batches...]

Calculating compound interest.

Oh almost forgot... I used to work for an investment advice firm a few years ago, and used a LOT of compounding and tax rates and all those things.

link|improve this answer
feedback

I've used a fair bit off differential and integral Calculus outside of work and school (but I'm also a huge nerd and love to apply these things to anything I can).

And yes, at work, Calculus II and Linear Algebra material often come up. But for your own daily life, Calculus I puts you far ahead of the curve. AND you'll be able to derive how your place on that curve is changing relative to time! How cool is that?

link|improve this answer
feedback

I've ended up having to do a lot of statistics math professionally. Things like standard deviations, linear regressions, averages with error bars, that kind of thing. Basically, anything that turns a line graph into a more interesting line graph on data reports.

(Which is funny, since statistics was my worst subject in school, hands down.)

link|improve this answer
feedback

Math I've used in programming, from "highest" to "lowest":

  • The "highest level" math I've used was graduate math in measure theory (real analysis), which I used in the design and implementation of a probabilistic language that would handle both continuous and discrete probability.

  • Below that I've used linear algebra, primarily to solve linear equations, which has been useful to me in many programs.

  • I've also done some symbolic differentiation to find minima of functions.

  • Finally, I've used high-school trigonometry to calculate distances between points defined by GPS coordinates and to do various other geographical calculations related to my hobby of geocaching.

link|improve this answer
feedback

Almost any mathematics can be used to solve a problem, hence almost any maths can be useful to programming. But what I've discovered is that having studied a particular branch of mathematics helps you recognise that the problem you face has a well known solution. Often you face a practical problem, organise this or that data, when you realise that most of it can be quickly calculated as needed from some simple analysis result.

I have found bayesian probability in the most unexpected of places, along with integrals, geometry, statistics, infinite series, numerical methods, and many, many graph theory results. And physical mathematics, optics and dynamics, has come up in some 3D programming I have done.

The only mathematics I have studied that I haven't stumbled across in programming to date is certain results in differential geometry (Guass maps, etc) and Godel's incompleteness theorem.

Of all of it, I would say that graph theory is the most common.

link|improve this answer
feedback

I wouldn't personally go about trying to "learn" math by itself. I find that if I teach myself things in anticipation of actually utilizing them, I quickly forget everything as I have no real world experience to tie it to. (I hated school)

I would suggest instead writing more code. RPG or Strategy games are great as bottomless-pit never-finish projects because of all of the math you end up doing if you start from scratch. It seems like everything's going to be really easy, then you decide to figure out how to calculate Field of Vision realistically and programmatically instead of just having a static circle, and all the sudden you're drowning in crazy Algorithms and actually have a reason to learn some new and interesting math. It's much more rewarding when it's "Yay my guy can see now, but not through walls or monsters. Exactly what I wanted!" as opposed to "Yay I now know that x = 7!".

http://mitpress.mit.edu/sicp/full-text/book/book.html < Read this, too.

I realize I didn't actually tell you what kind of math I use, and that's ok. I really only wanted to tell you to spend your time somewhere that you will see more benefit from.

If you really need to know, It's a crazy blend of basic algebra and assorted random other functions, some geometry, calc, stats, a whole list of other stuff I could never name. I would still fail a math vocab/remember 20 formulas exam and I couldn't really tell you any of the names of what anything is. But I can comfortably say I know enough to teach myself how to do what I want to do to the point where it isn't a problem. The only time I would have a problem is if I had to do something really specialized that I had absolutely 0 experience with, like some crazy nuclear physicist rocket science stuff. Making a video game version of that to be fun (and not realistic because reality does not make a good video game) would be much easier/entertaining. I fit into a weird rift of space between programming and art.

link|improve this answer
feedback

I've used linear algebra to solve problems related to computer graphics. I learned this during college.

I've also used calculus II, because I had to use a Taylor expansion for a simulation problem on which I was working. Don't know if that really counts though, because that's a pretty basic and common use of calculus. Learned that during college, too.

link|improve this answer
feedback

I've recently had to use Simpson's method for numerical integration for an app. I had to break out my numerical analysis book from college...

link|improve this answer
feedback

In my nearly-entirely database and business world (the word 'enterprise' makes me wince) career, I think the most advanced math I've used has been statistics: probability and occasionally some basic combinatorics.

I have happened across something that required me to break out my old calculus textbook, I'd be delighted :D

(Maybe I should start calling the SQL queries I write "Applied Set Theory"!)

link|improve this answer
feedback

Never used it but needed it: calculus for the volume of fluid filling a cylinder on it side (think of a large oil tank lying on its side... measure the oil level in feet using a dip stick but need volume in gallons). Even more complicated if the tank is not lying perfectly flat.

link|improve this answer
feedback

I have used geometry and graph theory for VLSI physical design. Statistics for information retrieval. Should my linear algebra be less shaky, I would sure find a use for it. Back-of-the-envelope calculations - extremely useful for programming any medium-sized or larger system.

link|improve this answer
feedback

I've done more database and GUI stuff, and honestly, I think basic algebra and a bit of statistics has been all I needed. I've forgotten most of the calculus, differential equations, and the rest. I got a minor in math and haven't used it at all.

link|improve this answer
feedback

Algebra, Trig.

The fact that I have spent my entire career dealing with CAD/CAM systems probably has something to do with a lack of math needs.

link|improve this answer
feedback

Well, for an engineer who also writes code, I've used:

  • Partial Differential equations (mostly simplified tensor field equations)
  • matrices
  • Fourier transforms
  • Laplace transforms
  • multi-dimensional integrals
  • probability and statistics
  • geometry and trigonometry
  • vector calculus
  • numerical methods for root finding, integration, etc.

Started doing all this is FORTRAN in school. Nowadays simple stuff in Excel with VBA. More complex things get done in python.

link|improve this answer
feedback

The hardest Math I found myself using was more on the comp-sci logic department, namely, Karnaugh Maps..

I had encountered a rather nasty multi-tiered query that had to be written unifying about 12 tables in a special way, because doing it wrong resulted in a Cartesian crossproduct which would have made quite a mess.

The Karnaugh map diagnosis allowed me to work out the parts of the database I wasn't really needing to analyse to get my product, which eliminated my bottleneck, made it easier to write the complex query, and returned instantaneously instead of dying and going out to lunch for 15 minute.

link|improve this answer
feedback
1 2

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