Latus rectum for the non-mathematician

  • Context: Undergrad 
  • Thread starter Thread starter bhnh
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 2K views
bhnh
Messages
5
Reaction score
0
I'm hoping someone can help me with this question. I'm an animator; the last math course I took was 40 years ago:bugeye:.

I have an elliptical shape wherein the major and minor axes intersect off-center, so I've got an egg shape (major axis=165, minor axis =80, intersection at 100,40). I have a line perpendicular to the major axis which can be positioned at any point along the major axis. What I need is a basic algorithm to figure the length of the resulting chord (latus rectum?).

I wouldn't want to admit to being desperate, but I am, kind of. Any help would be immensely appreciated.

Thanks!
 

Attachments

  • diagram.jpg
    diagram.jpg
    18.1 KB · Views: 549
Physics news on Phys.org
I suppose your shape is two ellipses joined at the minor axis. So you can write an equation for each one, with the origin at the intersection of the axes:

Left side:
x2/652 + y2/402 = 1

Right side:
x2/1002 + y2/402 = 1

The length is just 2*y. So rearrange for y:
If the line is on the left side:
length = 2 * sqrt( 402(1-x2/652) )
Where x is the distance from the intersection of the axes.