How can I identify a given curve and check whether it is a pair of straight lines, parabola, hyperbola, ellipse or a pair of curves (without plotting it)?
For example....how can I identify the type of the following curve:
9x^2+9y^2+18x+11=0
Is there any specific algorithm which will lead me to the type of curve given?
` ax^2 + bxy + cy^2 + ... = 0
d = b*b-4*a*c
d< 0 - ellipse
d >0 - hyperbola or a pair of straight lines
d = 0 - parabola
`