Results 1 to 4 of 4

Thread: How do i get the second point of intersection again?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Oct 2009
    Posts
    27

    How do i get the second point of intersection again?

    Hi,

    I have a circle with center (0,0) of radius 4
    It's equation should be:
    X^2 + Y^2 = 16

    I also have a straight line which has gradient of 1 (45deg) which goes through (4,0) and (0,-4)
    It's equation should be:
    Y = X - 4

    I am trying to use calculations to confirm that the line intersects with the circle at points (4,0) and (0,-4) but can only get (0,4). I forget how to calculate the other coordinate (0,-4).

    This is how I calculated my first intersect.

    Put Y=X-4 value into circle:
    X^2 + (X-4)^2 = 16

    Simplify down: (Is this part correct?)
    2X^2 - 16 = 16
    2X^2 = 32
    X^2=16
    X=4

    Now if i use 4 as value X and put back into circle equation then I get 0:
    4^2 + Y^2 = 16
    16 + Y^2 = 16
    Y^2 = 16-16 = 0

    So coordinate is (4,0).

    Now how do i calculate so i get the other intercept, (-4,0)?

  2. #2
    Powered By Medtronic dbasnett's Avatar
    Join Date
    Dec 2007
    Location
    Jefferson City, MO
    Posts
    9,897

    Re: How do i get the second point of intersection again?

    My First Computer -- Documentation Link (RT?M) -- Using the Debugger -- Prime Number Sieve
    Counting Bits -- Subnet Calculator -- UI Guidelines -- >> SerialPort Answer <<

    "Those who use Application.DoEvents have no idea what it does and those who know what it does never use it." John Wein

  3. #3
    Only Slightly Obsessive jemidiah's Avatar
    Join Date
    Apr 2002
    Posts
    2,431

    Re: How do i get the second point of intersection again?

    X^2 + (X-4)^2 = 16
    => X^2 + X^2 - 8X + 16 = 16
    => 2X^2 = 8X

    If X=0, the equation is satisfied, so Y=X-4=-4 gives the intersection point (0, -4). If X is not 0, divide it off to get the equation
    2X = 8
    => X=4
    which gives rise to solution (4, 0).

    So, you forgot the cross term and inverted the sign of the constant term when multiplying out the quadratic. These mistakes cancel each other out when it comes to finding the X=4 solution, but drop the X=0 solution.
    The time you enjoy wasting is not wasted time.
    Bertrand Russell

    <- Remember to rate posts you find helpful.

  4. #4

    Thread Starter
    Junior Member
    Join Date
    Oct 2009
    Posts
    27

    Re: How do i get the second point of intersection again?

    Thanks for your replies and the link.

    I haven't done this stuff in a long time so I forgot how to do some of it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width