3

Find the points of intersection of the line $x+y+k=0$ and the circle $x^2+y^2=2x$. Show that there are two points of intersection if: $-1-\sqrt2<k<-1+\sqrt2$, one point of intersection if: $k=-1\pm\sqrt2$, and none otherwise. Interpret the results geometrically. What is the shortest distance between the point (1,0) and either of the lines $x+y-1\pm\sqrt2=0$

My attempt:

$x + y=0$

$y=-x-k$

$x^2+y^2=2x$
$x^2+(-x-k)^2=2x$
$x^2+(x^2+2xk=k^2)=2x$
$2x^2 -2x+2xk+k^2=0$
$2x^2+(-2+2k)x +k^2=0$

Following what I read here: How do I calculate the intersection(s) of a straight line and a circle? I substituted into the quadratic equation and made the assumption that if $b^2 -4ac=0$ then there would be a single point of intersection.

$0=b^2-4ac$
$0=(-2+2k)^2-4(2)(k^2)$
$0=-4k^2-8k+4$
$0=k^2+2k-1$
$0=(k-1)^2$

The parameters for k, as stated in the question, are clearly not met so I'm not sure what else to try.

Lucian
  • 43
  • I tried the following: – Lucian Feb 22 '14 at 16:23
  • You are doing the right thing the only problem is that you messed up the calculation, everything is correct up until: $-4k^2 - 8k +4=0$. It should be $4+4k^2-8k-8k^2=0$. – Ben Feb 22 '14 at 18:34
  • Yes I accidentally neglected to include that step in my above workings however if $4+4k^2-8k-8k^2=0$ is simplified, it can be expressed as $-4k^2-8k+4=0$ unless I'm mistaken. – Lucian Feb 22 '14 at 19:23
  • How do you find that there are two points of intersection if $-1-\sqrt2<k<-1+\sqrt2,$ ? – Tony Piccolo Feb 23 '14 at 07:51
  • The link included in the question indicates that: "if $b^2+4ac>0$ then the line meets the circle in two distinct points." I presume that when $k=-1\pm\sqrt2$ that the line is tangential to the circle and if $k$ lies between these two values then it is crossing the circle at two points. – Lucian Feb 23 '14 at 09:12
  • Well, I remembered it only for completeness. – Tony Piccolo Feb 23 '14 at 10:31

1 Answers1

0

Everything is correct up until your last two lines. You seem to be assuming that $k^2 + 2k -1$ is equal to $(k-1)^2$, which is not true.

Your equation $k^2 + 2k -1 = 0$ is correct, and it has roots $k = -1 \pm \sqrt2$, which is probably what you were expecting.

bubba
  • 43,483
  • 3
  • 61
  • 122
  • Oh yes now I see where I went wrong slams hand into face. Thanks for pointing out my idiotic factorising mistake. – Lucian Feb 23 '14 at 09:05