Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to learn mathematical notation?

Do you have any recommendations of books or websites that would teach me mathematical notation. As a developer I work on a wide range of projects from .NET/SQL Server stuff through to Flash games and I often find myself referring to articles on the internet for guidance. Many of the articles contain mathematical formula, and unless they are accompanied by "plain English" explanations I usually struggle to convert the formula into code.

I have a degree in Interactive Multimedia, and so I have had no formal higher math education, however, I don't find math to be too taxing to figure out.

Hopefully by learning this notation I will be able to further my knowledge by actually being able to get stuck into more of it.


Note: please, don't suggest I go back to school, and do a higher math course as, while I know this would be the best bet, it simply isn't an option. Other than that, any and all suggestions are welcome.


Update

Here are a few types of thing that I program most often. I'm not sure what areas of math these cover.

  • 2d and 3d collision detection
  • Reporting utilities for data collection applications (registration forms, surveys, etc.)
  • 2d and 3d vector math, mainly based around games
  • Colour manipulation (programmatically fading from one colour to the next, adding and subtracting colours, making colours lighter / darker on the fly)

Hope this helps add a bit of context.

like image 994
Greg B Avatar asked Apr 06 '09 11:04

Greg B


People also ask

How do you write in mathematical notation?

The ∈ means "an element of", so a∈S means "a is in the set S". The rationals are written as Q, because Q is for quotient (R is taken for real numbers). The ∧ and ∨ mean "and" and "or", respectively. Lastly, ⟹ means "implies".

What is the formula of notation?

An equation involving x and y, which is also a function, can be written in the form y = “some expression involving x”; that is, y = f ( x). This last expression is read as “ y equals f of x” and means that y is a function of x.


2 Answers

You can find a boat load of free math books here: http://www.e-booksdirectory.com/mathematics.php

If you're looking for just a table of symbols and what they mean, Wikipedia has a nice list: http://en.wikipedia.org/wiki/Table_of_mathematical_symbols

like image 132
Patrick Cuff Avatar answered Oct 04 '22 19:10

Patrick Cuff


It sounds like a lot of your applications are in computer graphics.

One of the classic textbooks is Computer Graphics: Principles and Practice by Foley and Van Dam. You might consider getting a copy. It may not slow down to explain matrices (see the link I gave for a page on coordinate transforms), but there's enough context there that you can probably do just fine if you either do some basic searches on some of the linear algebra concepts, or check out a linear algebra book from the library.

It doesn't sound like you'd benefit a lot from a full "digestion" of a linear algebra course (which goes into eigenvalues, matrix factoring, & other stuff). I'd just take one concept at a time as it comes up. You can learn quite a bit from slow osmosis.

like image 33
Jason S Avatar answered Oct 04 '22 19:10

Jason S