vote up 4 vote down star
5

Next year I will be starting a degree in game programming. I have been told to brush up on my math. Which chapters of math text books should I read over?

The course is described as:

The Qantm Bachelor of Interactive Entertainment (with a Major in Games Programming) focuses on specific areas which are critical to developing knowledge and skills in games programming for interactive entertainment. Students of the Major in Games Programming learn C++ programming, work with mathematical functions and artificial intelligence to design and program games for a variety of devices. To broaden students' perspectives on the games development pipeline, the major includes specialised courses in script writing, character development, games design, agent systems and 2D and 3D animation.

Thanks in advance!

flag
1  
A duplicate of stackoverflow.com/questions/1320403/… – Ngu Soon Hui Oct 19 at 1:06
2  
While, the topics are similar, there a differences, the inclusion of a course description allows for more distinct answers relevant to my unique situation. – Shraptnel Oct 19 at 1:09
@Ngu Soon Hui, this is not a duplicate of that question. I'd say that the other questions is potentially a subset of this one. For example, path finding requires knowledge of graph theory. – Bob Cross Oct 19 at 1:32

9 Answers

vote up 11 vote down check

I would say that your best bets are linear algebra and discrete math.

link|flag
Thanks for the help – Shraptnel Oct 19 at 1:25
@Shraptnel, you're welcome (and I'm a terrible speller). Good luck! – Bob Cross Oct 19 at 1:33
vote up 6 vote down

My suggested list of must-know mathematical topics for game programming in order of priority:

  1. Trigonometry
  2. Linear algebra
  3. Graph theory
  4. Game theory
  5. Discrete mathematics
  6. Statistics
  7. Lambda calculus
link|flag
@cdiggins, why lambda calculus? This is a serious question: I don't understand how this would be useful to someone who was specifically writing games. – Bob Cross Oct 19 at 12:50
LC is useful to understand the underpinnings of functional programming. I think all programmers should know it. Then again, one can do what I did, and learn it after learning functional programming in practice. – cdiggins Oct 20 at 3:14
vote up 4 vote down

Having taught for a Game Design and Development program, I would recommend the following topics:

  • Trigonometry
  • Vectors
  • Newtonian Physics
  • College Algebra
  • Linear Algebra (including quaternions)
link|flag
vote up 2 vote down

This is what you want if you want to get a solid foundation and a really good head start: http://chortle.ccsu.edu/VectorLessons/vectorIndex.html.

I don't even do computer graphics and I can tell you that I have still needed to know every one of the topics mentioned in the link. The Maths involved is simply useful across the field.

link|flag
vote up 2 vote down

Having studied that course at Qantm a few years back ('06 graduate), I know approximately what you're in for ;)

All the maths you will need will be taught as part of the course - however it is done at a blazing pace, and if you miss any of the tutorials you will need to scramble and get your head around it yourself. I remember missing the class on collision detection, and boy was that painful.

All the answers given already are spot-on for the useful concepts for game math. One extra thing you might want to get on top of early is state machines (for AI).

link|flag
Cool, thanks for the advice, small world – Shraptnel Oct 19 at 2:13
vote up 1 vote down

Trigonometry is an obvious one.

link|flag
vote up 1 vote down

I'd also add Newtonian Physics into the mix - concepts such as momentum, inertia, acceleration are very worthwhile.

link|flag
vote up 1 vote down

You should brush up on basic geometry as well.

link|flag
vote up 1 vote down

I have asked myself many times what areas I should study to be a good game programmer. After a bit of research, I ran across this article from Binary Creativity which I highly recommend:

Things You Need to Know before Interviewing for a Game Programming Position

Although this article's audience is someone who is preparing for an interview, I still believe the first section in this article (Math) gives you an idea of what you should know, or at least be comfortable with.

link|flag

Your Answer

Get an OpenID
or

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