Can't decide which math/physics basics book to get

Started by
12 comments, last by legends2k 11 years, 1 month ago

I've been pondering which math/physics basics book to get for hours now.

  • My math basics are quite good from my BSc in CS. It's been a while though, and I would like a reference of things relevant to game development.
  • My physics basics are not very strong. I know some basic mechanics but that's about where it ends.
  • I'm mostly working on 2D games. I've worked on 3D games and would like to learn more about the graphics pipeline and rasterisation and such, but I can still get a specialised book on that.
  • I'm looking for information on collision detection and response algorithms.

There are several promising books, I've narrowed it down to just two:

Mathematics and Physics for Programmers

  • Very basic, starts at grade school level
  • More of a textbook than a reference, it seems
  • Covers all the relevant basic math topics: trigonometry, calculus, linear algebra
  • Seems to cover the relevant physics basics, but I can't tell for sure
  • Covers a broad range of topics, even some game theory and AI
  • Has a chapter on tile-based games, which is probably quite relevant to me
  • Uses lots of IMO rather difficult to read pseudo code
  • Uses slightly weird terminology, e.g. they're talking about "squares" instead of boxes when discussing collision detection, and of "collision resolution" instead of "collision response" (which gets much more relevant hits on Google at least)
  • Not well-known authors, doesn't get much praise

Essential Mathematics for Games and Interactive Applications

  • Seems appropriate for my level
  • Seems to use proper terminology
  • Does not cover trigonometry or calculus, doesn't even include a reference of the trigonometric identities
  • Covers linear algebra in much more depth
  • Covers rigid body physics
  • Has a highly interesting chapter on interpolation
  • Covers the graphics pipeline and shaders
  • Semi-popular authors, gets considerable praise
  • It's not on gamedev.net Books for some reason

I really am torn. Getting both seems wrong, as they cover much of the same ground.

MAPFP seems to be less known and less sophisticated, yet I could use a refresher on calculus and would like my reference to include trigonometry. It also has some interesting hands-on topics.

EMFGAIA seems more appropriate for my level, yet covers various things I don't really need right now, working on 2D games. But it seems to be more industry-connected, and at the same time more scientific/accurate.

So, what do you think, which one should I get? Or can you recommend another one appropriate for me?

Advertisement
Mathematics for 3D Game Programming and Computer Graphics is not on your list, but I own it and think it's excellent. It has chapters on everything from simple topics to advanced, and will function as permanent reference material when you are done reading it.

Mathematics for 3D Game Programming and Computer Graphics is not on your list, but I own it and think it's excellent. It has chapters on everything from simple topics to advanced, and will function as permanent reference material when you are done reading it.

It was in fact on my list, but I thought it didn't cover physics. Just saw that it does. Would you say that it manages to bring across the basics well? It's only 20 pages on linear physics, doesn't seem much. I don't want to write the next Box2D, I just want a solid foundation. It has a trigonometry reference, that's a plus. Would you generally say it's useful for 2D games? Do you have a more basic math book accompanying that one?

It was on your list? You mention 2 books in your post. That wasn't one of them.

You don't need to worry about 2D vs 3D. There isn't a new type of math for every dimension. A 2D collision check is the same as a 3D one minus one dimension.

I only have the second addition, but it starts at points, then vectors, matrices, volumes, collision detection (of every type), collision response, physics, graphical techniques (like polygon reduction), ocean simulation, and then it ends with a bunch of small chapters on general purpose techniques that are good to know. Third addition has more.

If a chapter looks short, it's because the book isn't full of source code. It explains concepts and shows formulas.

It's all general purpose knowledge.

I got good use from Mathematics and Physics for Programmers, Mathematics for 3D Game Programming and Computer Graphics, Game Physics Engine Development, and Real-Time Collision Detection.

It was on your list? You mention 2 books in your post. That wasn't one of them.

On my list before I narrowed it down, is what I meant smile.png But sounds good, didn't notice it covers collision response. And the other books don't allocate many more pages to that anyway. It's definitely on my list now. And since it's apparently quite famous, it's a good candidate, too.

I got good use from Mathematics and Physics for Programmers, Mathematics for 3D Game Programming and Computer Graphics, Game Physics Engine Development, and Real-Time Collision Detection.

You have both Mathematics and Physics for Programmers and Mathematics for 3D Game Programming and Computer Graphics? I havent read the former (obviously), would you say its too basic for someone with a CS degree? Or is it still something you refer back to occasionally?

I recommend you "Real-Time Collision Detection", it's very practical with lot of algorithms and useful information.

"Real-Time Collision" by Christer Ericson and "Game Physics" by Dave Eberly.

"Real-Time Collision" by Christer Ericson

It's "Real-Time Collision Detection".

If you think Mathematics for 3D Game Programming and Computer Graphics is too advanced for you, (or at least too fast on the basic) you should take Practical Linear Algebra: A Geometry Toolbox.

The first half is about linear algebra in 2D and the other half about 3D and some pages about the curves. It's a pretty good book and it will give you an intuitive look about linear algebra with practical explanation of the maths and drawings, rather than an approach with proofs and theorems.

I found this book on http://www.realtimerendering.com/books.html (at the end).

And of course do the exercises :) but don't be scared, you don't need a calculator.

This topic is closed to new replies.

Advertisement