I have an Ellipse with known coordinates , I would like to know how I can create an inner ellipse coordinates that are exactly 5 inches perpendicular from the outer ellipse points. Please see the drawing at the link - I have the outer points x,y posted below. Axis Major a 15.75, axis minor b 12.
X , Y
-6.0000,-0.6250
-6.0000,-1.2500
-6.0000,-1.8750
-6.0000,-2.5000
-5.9800,-3.1073
-5.8900,-3.7091
-5.7400,-4.2990
-5.5400,-4.8712
-5.2800,-5.4197
-4.9600,-5.9388
-4.5900,-6.4233
-4.1800,-6.8682
-3.7200,-7.2689
-3.2300,-7.6213
-2.7000,-7.9218
-2.1400,-8.1673
-1.5600,-8.3553
-0.9700,-8.4838
-0.3700,-8.5516
0.3700,-8.5516
0.9700,-8.4838
1.5600,-8.3553
2.1400,-8.1673
2.7000,-7.9218
3.2300,-7.6213
3.7200,-7.2689
4.1800,-6.8682
4.5900,-6.4233
4.9600,-5.9388
5.2800,-5.4197
5.5400,-4.8712
5.7400,-4.2990
5.8900,-3.7091
5.9800,-3.1073
6.0000,-2.5000
6.0000,-1.8750
6.0000,-1.2500
6.0000,-0.6250
DRAWING LOCATED HERE : Inner ellipse generated from points on outer ellipse.
ADDED PLOT USING DOUG M formula: Excel Scatter Plot ]2 This is somewhat off as the inner Ellipse should match the outer only smaller by 5 ..
EXCEL
cellX =A5-5 * ( (A5/15.75^2) / (SQRT(( (A5^2) / (15.75^4) ) + ( (B5^2) / (12^4) ))))
cellY =B5-5 * ( (B5/12^2) / (SQRT(( (A5^2) / (15.75^4) ) + ( (B5^2) / (12^4) ))))
where:
A = X values.
B = Y values.
axis major a = 15.75 I changed the semi to 8.5 as it matches the ellipse.
axis minor b = 12 - Semi = 6
EDIT - 4/18/2016
Attached is a plot in Excel : While these points are 5 inches away from the outer ellipse - they are not perpendicular to the points on the ellipse, I need the perpendicular point -5 from the outer ellipse. Dougs equation does a good job of calculating 5 points away but maybe it will not plot to be an ellipse - which will work for me as long as the points are perpendicular to the outer ellipse. I am unable to add the additional plot - as I do not have my account on this site combined to the other SO site (same account).