#Finding the radius of a circle

11 messages · Page 1 of 1 (latest)

small lintelBOT
#
  1. Ask your question and show the work you've done so far. If you've posted a screenshot of a question, specify which part you need help with.
  2. Wait patiently for a helper to come along.
  3. Once someone helps you, say thank you and close the thread with:
    +close
    
  4. Feel free to nominate the person for helper of the week in #helper-nominations
  5. Do not ping the mods, unless someone is breaking the rules.
  6. If you're happy with the help you got here, and the server overall, you can contribute financially as well:
spring fog
#

From what you stated about h_x and p_y, I will just assume C is the origin

#

and that CF is a radial segment

#

So basically given the coordinates of H and P, we want the radius r, i.e. length of CF, i.e. distance of the origin from HP

#

Then the equation of the circle will simply be x^2 + y^2 = r^2

#

Slope of HP = (p_y - h_y)/(p_x - h_x) = -h_y/p_x

#

Slope of CF = p_x/h_y

#

Solving for the coordinates of F,
f_y = p_x/h_y * f_x = -h_y/p_x * f_x + h_y

sand garden
#

Most of the information here is superfluous. All we need are the coordinates of f and c.

#

Then we just use the distance formula.