|  |  D.13.6.30 dualConic Procedure from librarytropical.lib(see  tropical_lib).
 
Example:Usage:
dualConic(f); f poly
Assume:
f is an affine conic in two variables x and y
Return:
poly, the equation of the dual conic
 |  | LIB "tropical.lib";
ring r=0,(x,y),dp;
poly conic=2x2+1/2y2-1;
dualConic(conic);
==> 1/2x2+2y2-1
 | 
 
 |