|
D.13.6.31 dualConic
Procedure from library tropical.lib (see tropical_lib).
- 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
Example:
| LIB "tropical.lib";
==> Welcome to polymake version
==> Copyright (c) 1997-2015
==> Ewgenij Gawrilow, Michael Joswig (TU Darmstadt)
==> http://www.polymake.org
ring r=0,(x,y),dp;
poly conic=2x2+1/2y2-1;
dualConic(conic);
==> 1/2x2+2y2-1
|
|