What is the meaning of the following math symbol?

Started by
5 comments, last by Spa8nky 14 years, 7 months ago
Hi folks, I have been reading through graphics programming gems 2 which I borrowed from the library and have been working on the "Apply Decals to Arbitary Surfaces" gem. The problem I am facing is that I don't understand the meaning of the ' (N'R) symbol in Equation 4.8.3. Can anyone help? Also, what book would be recommended to help decipher mathematical symbols; a kind of symbol dictionary if you will? [Edited by - Spa8nky on September 10, 2009 9:39:01 AM]
Advertisement
You mean Eq. 4.8.3 here?

In English,
 Dot product of the vector N with the vector R --------------------------------------------- - epsilon            Norm of vector R----------------------------------------------------------                      1 - epsilon

where "epsilon" is a small number.

Notice what happens when epsilon is zero. Then you just have,

dot(N, R/||R||)

which means, "the component of N in the direction of R." You can think of this formula as being,

f("the component of N in the direction of R")

where

         1           ef(x) = ----- x  -  ------       1 - e       1 - e


is just the linear function such that

f(e) = 0
f(1) = 1

where now I'm using 'e' instead of 'epsilon.'
Aha its a dot product not a '.....some idiot has drawn on the book.

I'm going to get a copy from Amazon then, seems like the sensible thing to do.

Also, a hard back book of math symbols would be pretty sweet!

Thanks for your help.



Quote:a kind of symbol dictionary..

It appears you just stumbled across a bad markup.

However, if you happen across a CRC Handbook (Chemical Rubber Company) in a bookstall or yardsale, it's worth a dollar or two and has lots of handy symbols and formulae.

Please don't PM me with questions. Post them in the forums for everyone's benefit, and I can embarrass myself publicly.

You don't forget how to play when you grow old; you grow old when you forget how to play.

Quote:Original post by Spa8nky
Aha its a dot product not a '.....some idiot has drawn on the book.

Wow. That is the awesomest idea ever. I'm going to go check out Numerical Recipes from the library and change stuff.
Quote:Original post by Spa8nky
Aha its a dot product not a '.....some idiot has drawn on the book.


Statisticians have historically used ' (prime) to denote the transpose. If N and R are column vectors, then NT is a row vector and the dot product of N and R can be written as NTR. A statistician might instead use the prime notation and write N'R.


Awesome nugget of knowledge there, thanks :) It would explain why someone hs scrawled that symbol over the dot symbol then!

Still, deciphering this mathematics is hard enough at the best of times without other people making life harder by writing over the equations with their own interpretations :(

This topic is closed to new replies.

Advertisement