Exploring Analyic Geometry with Mathematica® |
|||||
| Home | Contents | Commands | Packages | Explorations | Reference |
| Tour | Lines | Circles | Conics | Analysis | Tangents |
Reciprocals of Points and Lines
recptln.html
Exploration
Show that the polar reciprocal of
in the auxiliary conic
is the point
, assuming that the line does not pass through the origin. Also, show that the line x+y-1=0 is the polar reciprocal of the point (x,y) with respect to C.
Approach
Create the auxiliary conic, C. The pole point is the reciprocal of the line. The polar line is the reciprocal of the point.
Initialize
To initialize Descarta2D, select the input cell bracket and press SHIFT-Enter.
This initialization assumes that the Descarta2D software has been copied into one of the standard directories for AddOns which are on the Mathematica search path, $Path.
<<Descarta2D`
Solution
Define the auxiliary conic (circle), C.
c1=Circle2D[{0,0},1];
The pole point is the reciprocal.
Clear[A1,B1,C1];
Point2D[Line2D[A1,B1,C1],c1]
The polar line is the reciprocal.
Clear[x,y];
Line2D[Point2D[x,y],c1] //Simplify