All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
Circle Line Locus (Posted on 2021-07-02) Difficulty: 4 of 5
Let C be a unit circle centered at (2,0)

Let l be any line through the origin and intersecting C at points A1 and A2.

The locus P is the set of points on line l with OB=A1A2.

Find parametric equations for the locus of P.

See The Solution Submitted by Jer    
Rating: 4.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Well, that's not the curve | Comment 7 of 9 |
(In reply to re(2): what the curve looks like by Charlie)

Although the curve fits on the x-axis, it doesn't fit vertically.  This program finds the points of intersection of the line with the circle and the distance between them. It uses that to find a point on the locus sought. Then evaluates the LHS and the RHS of the proposed equation in my previous post, and they don't match.


syms x y 
for angle=0:5:25
slope=tand(angle);
eqns=[y==slope*x, (x-2)^2+y^2==1];
S = solve(eqns,[x y]);
dist=double(sqrt((S.x(1)-S.x(2))^2 + (S.y(1)-S.y(2))^2));
x1=dist*cosd(angle);
y1=dist*sind(angle);
LHS = (x1^2+2*y1^2)^2;
RHS = 4*(x1^2-2*y1^2);  
disp([angle LHS RHS])
end

  angle              LHS                       RHS
    0          16                        16
     5          15.2718645233653          15.1603127783735
    10          13.1305335227521          12.7973618034191
    15          9.76159824632146          9.35898384862246
  20          5.65167818914667          5.52577853924721
    25          1.81258532668361         2.1209393485321



  Posted by Charlie on 2021-07-04 09:19:30
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (10)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information