<< Chapter < Page | Chapter >> Page > |
where here we are asking Sage to write as a series in and . The 10 in the command is telling Sage to only compute the terms of the series up to degree 10, though we know that really we're dealing with a polynomial of degree 3, so higher degree terms in and couldn't possibly show up in the Taylor expansion (Why?).
Exercises
For these exercises, I would recommend using the Sage computer algebra system (
http://www.sagemath.org/
), a free open-source alternative to Maple, Mathematica, etc.; for example, to graph the solution set to
in Sage, we might use the commands:
var("x y")
implicit_plot(x^2+y^2-2, (x,-3,3), (y,-3,3)).show(aspect_ratio=1)
To get inline help on a command in Sage, use that command followed by a ?, as in:
implicit_plot?
taylor?
We've now seen plane curves with various singularities and given a few types of them names, although we haven't give any precise mathematical definitions of these yet.
One simple question we should expect to be able to answer using calculus is what are the tangent lines to the branch or branches of the curve at the singular point? (In the node example above, we can see two distinct tangent lines in the picture, whereas in the cusp and tacnode cases, there should only be one tangent line at the singular point.)
To simplify our computations, we may as well first make a change of coordinates so that the singular point is at the origin (we can certainly do this with an affine change of variables–see the homework). Consider then a plane curve
, where
is a polynomial with
.
The notation
will be used to mean
. More generally, an
algebraic variety over the real numbers
will be the locus
Of course, if the origin were a smooth point, this would be easy: there is only one tangent line, defined by
When the origin is singular, both first partial derivatives are zero and we need to look at higher order terms to find the tangent lines. In particular, let us write where is the degree part of the polynomial ; here and is the non-zero piece of of smallest degree.
Proposition If is a tangent line to at , then is a factor of .
Let for be a local parametrization of a branch of near the origin, with . We assume for convenience that the branch does not have a vertical tangent, i.e. that is bounded as . Then the slope of the tangent line to this branch of at the origin should be . We write
Notification Switch
Would you like to follow the 'The art of the pfug' conversation and receive update notifications?