Quadric surface subscript notation in Forsyth & Ponce

  • Context: Graduate 
  • Thread starter Thread starter gnome
  • Start date Start date
  • Tags Tags
    Notation
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
gnome
Messages
1,031
Reaction score
1
From Computer Vision, A Modern Approach by Forsyth & Ponce:

More generally, a quadric surface is the locus of the points P whose coordinates satisfy the equation:

[tex]a_{200}x^2 + a_{110}xy + a_{020}y^2 + a_{011}yz + a_{002}z^2 + a_{101}xz + a_{100}x + a_{010}y + a_{001}z + a_{000} = 0[/tex]

and it is straightforward to check that this condition is equivalent to
[tex]\bold{P}^TQ\bold{P} = 0, \qquad \text{where} \quad Q = \left( \begin{array}{cccc} a_{200} &\frac{1}{2}a_{110} &\frac{1}{2}a_{101} &\frac{1}{2}a_{100} \\<br /> \frac{1}{2}a_{110} &a_{020} &\frac{1}{2}a_{011} &\frac{1}{2}a_{010} \\<br /> \frac{1}{2}a_{101} &\frac{1}{2}a_{011} &a_{002} &\frac{1}{2}a_{001} \\<br /> \frac{1}{2}a_{100} &\frac{1}{2}a_{010} &\frac{1}{2}a_{001} &a_{000} \end{array} \right )[/tex]
In this equation, P denotes the homogeneous coordinate vector of P.


I don't see any explanation of the subscripts. Anybody know what they represent?
 
Last edited:
Physics news on Phys.org
It seems the subscripts in the coefficients refer to the number of factors of x,y,z that multiply the coefficient in this polynomial.
Example:
a011 is the coefficient of x0y1z1.
 
Eureka!

Thanks robphy.