vote up 30 vote down star
16

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.

flag

40 Answers

1 2 next
vote up 15 vote down

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|flag
vote up 12 vote down

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

link|flag
2  
What kind of mathematics is required to create a chip that allowed you to post this answer? – J.F. Sebastian Jan 16 at 23:42
6  
@J.F. Sebastian: The kind needed to the remaining 5% of "Real World Programming". – Roberto Russo Jan 16 at 23:51
show 6 more comments
vote up 5 vote down

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|flag
show 2 more comments
vote up 5 vote down

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|flag
show 1 more comment
vote up 5 vote down

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|flag
vote up 5 vote down check

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

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

link|flag
vote up 4 vote down

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

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

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

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|flag
show 3 more comments
vote up 3 vote down

Being in research...

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

link|flag
vote up 3 vote down

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|flag
show 3 more comments
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
1  
You cant stop with medians and Stdev, they're the least interesting parts! – Kent Fredric Jan 17 at 7:24
vote up 2 vote down

For work basically the most I have done is:

  1. Algebra for manipulating equations. Nothing too fancy, definitely high school level math. I am including logarithms and exponents under Algebra here.

  2. Discrete math, but at a very basic level. The logic, counting principles (product and sum rule), basic set theory, basic logic theory, etc. were all things I learned prior to college. So again high school level math.

    • One excepion to this is topological sorting. I did learn this in college and I used it once on an SQL query to order a list of dependencies so I could figure out which order to execute a set of rules for calculating columns in a query where each calculation was stored in a data table (in no particular order). But that was getting overly fancy. A normal person could have just ordered the rules himself/herself.

On my own time playing around: Trig/Vector Calculus/Geometry/Linear Algebra/Probability + Statistics

I was reading an information retrieval book and some of their methods involve Vector calculus and linear regressions for implementing search algorithms. I have also been reading on data mining and using some probability tools.

link|flag
vote up 2 vote down

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

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

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

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

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

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

link|flag
vote up 1 vote down

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

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

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

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

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

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

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