SlideShare une entreprise Scribd logo
1  sur  35
Télécharger pour lire hors ligne
Background and Project Description Line Ellipse Rectangle Future Work
Interacting Particles
Midterm Report
University of Illinois at Urbana-Champaign
Department of Mathematics
Illinois Geometry Lab
October 29, 2015
Background and Project Description Line Ellipse Rectangle Future Work
Background
n-diameter
A generalization of the diameter. For n points, find them such
that the geometric mean of the distances between them is
maximized.
Equivalently, maximize the product of the distances between
points.
Our Project
Find the n-diameter and the configuration of points that gives
it for a given shape.
This may be very expensive to calculate; it may be better to
make an approximation by finding a configuration with equal
arc lengths or equal Euclidean distances.
Background and Project Description Line Ellipse Rectangle Future Work
Line
Intuitively, one might think that the maximizing configuration on
the line would be to divide the line into equal segments. However,
this is not so. For example,
f = (1 0) (x 0) (1 x) [(1 x) 0] [1 (1 x)] [x (1 x)]
= x2
(x 1)2
(2x 1)
df
dx
= 2
f
x
+ 2
f
x 1
+ 2
f
2x 1
= 0
0 = 2x2
2x x + 1 + 2x2
x + x2
x
0 = 5x2
5x + 1
x =
1
2
✓
1 ±
1
p
5
◆
This problem for the line has already been solved in general.
Background and Project Description Line Ellipse Rectangle Future Work
General Problem
Ellipse
For an ellipse with unital major axis and minor axis of length a (so
a < 1), note that it becomes more line-like as a ! 0. For example,
for n = 3, if we assume that it must be symmetric about the
x-axis, the solution can be found to be points at
p1 = (a, 0)
p2 = x,
r
1
⇣x
a
⌘2
!
p3 = x,
r
1
⇣x
a
⌘2
!
x = a
"
a2 + 3
p
25a4 18a2 + 9
6 (a2 1)
#
As a ! 0, x ! 0 and so
Background and Project Description Line Ellipse Rectangle Future Work
General Problem
Ellipse
As a ! 0, x ! 0 and so
p1 = (a, 0)
p2 = (0, 1)
p3 = (0, 1)
Note that these are solution is not necessarily symmetric for
the n = 3 case.
However, our numerical solution returned a symmetric result,
so this should be a good assumption.
Conjecture: The points for the n-diameter on the ellipse will
alternate sides.
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.9
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.8
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.7
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.6
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.5
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.4
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.3
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.2
Background and Project Description Line Ellipse Rectangle Future Work
Images
Ellipse - a = 0.1
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Arc length approximation
Research on the movement of three particles on a given ellipse
Hold the arc length between every two particles the same
Attempt to find the distribution of particles with maximum
product of diameters
Find the trajectory of center of mass when three
particles moving
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Conjecture
(1) The trajectory of center of mass may be some ’beautiful’
figure
(2) The center of mass may never fall on the original
(3) The distribution of three particles with maximum product
of diameters may be symmetric
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Methodology
Choose the fixed ellipse with expression
x2
52
+
y2
32
= 1
Apply numerical method and recursion in calculation and
programming
Conduct simulation with help of Java and Mathematica
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Figure: Particles distribution with one at rightmost
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Figure: Trajectory of center of mass.
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Figures
Figure: Distribution of particles with maximum product of diameters.
Background and Project Description Line Ellipse Rectangle Future Work
Arc length approximation
Results and Findings
Trajectory of center of mass is an ellipse with the same shape
as the ellipse that we are researching on, except a much
smaller size
The center of mass never falls on the original
The distribution of three particles with maximum product of
diameters is almost symmetric, with one particle falling on the
lowest position on ellipse. (not exactly symmetric may due to
precision in calculation)
Background and Project Description Line Ellipse Rectangle Future Work
Triangle CoM
Modeling the Trajectory of the Center of Mass
Given a unit square and 3 points on its edges, A, B, and C, that
divide the perimeter of the square into three equal-length pieces,
we want to identify the center of mass of the triangle 4ABC and
model the trajectory of its center of mass in terms of the location
of the three points.
Due to the symmetric nature of the square, it su ces to consider
the movement of one of the three points on one edge
As A travels on the edges of the square in a full cycle, the CoM of
4ABC moves around the center of the square on a small rectangle
for 3 cycles. The vertices of the small rectangle is given by
(4
9 , 4
9 ), (4
9 , 5
9 ), (5
9 , 5
9 ), and (5
9 , 4
9 ).
Background and Project Description Line Ellipse Rectangle Future Work
Triangle CoM
Background and Project Description Line Ellipse Rectangle Future Work
Triangle CoM
Background and Project Description Line Ellipse Rectangle Future Work
Triangle CoM
Background and Project Description Line Ellipse Rectangle Future Work
Triangle CoM
Background and Project Description Line Ellipse Rectangle Future Work
Triangle CoM
3-Diameter Problem
Given the triangle 4ABC given above, we are interested in
maximizing the product of the three diameters, i.e. AB · BC · AC.
It can be shown that the product is maximized when the CoM of
4ABC lies on the 4 vertices of the small rectangle.
Background and Project Description Line Ellipse Rectangle Future Work
Mapping
Finding n-diameters on rectangles
We can represent the location
on the rectangle by a mapping
f : R ! R2. For example,
f (0) = (0, 0)
f (7) = (6, 1)
f (12) = (4, 4)
f (19) = (0, 1)
f (22) = (2, 0)
Background and Project Description Line Ellipse Rectangle Future Work
Future Work
Expand the research from 3-diameters to general n
Improve speed of calculation
Change the restriction same arc length to same length
of diameter

Contenu connexe

Tendances

HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...
HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...
HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...Harish Chandra Rajpoot
 
Derivations of inscribed & circumscribed radii for three externally touching ...
Derivations of inscribed & circumscribed radii for three externally touching ...Derivations of inscribed & circumscribed radii for three externally touching ...
Derivations of inscribed & circumscribed radii for three externally touching ...Harish Chandra Rajpoot
 
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...mathsjournal
 
Composition of Forces
Composition of ForcesComposition of Forces
Composition of ForcesAmenahGondal1
 
Least square method
Least square methodLeast square method
Least square methodSomya Bagai
 
Multiple sagement trapezoidal rule
Multiple sagement trapezoidal ruleMultiple sagement trapezoidal rule
Multiple sagement trapezoidal ruleTanmoy Debnath
 
Curve fitting - Lecture Notes
Curve fitting - Lecture NotesCurve fitting - Lecture Notes
Curve fitting - Lecture NotesDr. Nirav Vyas
 
Solid angle subtended by a rectangular plane at any point in the space
Solid angle subtended by a rectangular plane at any point in the space Solid angle subtended by a rectangular plane at any point in the space
Solid angle subtended by a rectangular plane at any point in the space Harish Chandra Rajpoot
 
5.13.2 Area of Regular Polygons and Composite Shapes
5.13.2 Area of Regular Polygons and Composite Shapes5.13.2 Area of Regular Polygons and Composite Shapes
5.13.2 Area of Regular Polygons and Composite Shapessmiller5
 
case study of curve fitting
case study of curve fittingcase study of curve fitting
case study of curve fittingAdarsh Patel
 
Triangle law of vector addition
Triangle law of vector additionTriangle law of vector addition
Triangle law of vector additionLauragibbo1
 
Assignment calculus (repaired)
Assignment calculus (repaired)Assignment calculus (repaired)
Assignment calculus (repaired)Ker0
 
Vectors.pdf
Vectors.pdfVectors.pdf
Vectors.pdfd00a7ece
 

Tendances (18)

HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...
HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...
HCR's Infinite or Convergence Series (Calculations of Volume, Surface Area of...
 
Derivations of inscribed & circumscribed radii for three externally touching ...
Derivations of inscribed & circumscribed radii for three externally touching ...Derivations of inscribed & circumscribed radii for three externally touching ...
Derivations of inscribed & circumscribed radii for three externally touching ...
 
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
A NEW STUDY OF TRAPEZOIDAL, SIMPSON’S1/3 AND SIMPSON’S 3/8 RULES OF NUMERICAL...
 
Composition of Forces
Composition of ForcesComposition of Forces
Composition of Forces
 
Least square method
Least square methodLeast square method
Least square method
 
Multiple sagement trapezoidal rule
Multiple sagement trapezoidal ruleMultiple sagement trapezoidal rule
Multiple sagement trapezoidal rule
 
Coordinate system
Coordinate systemCoordinate system
Coordinate system
 
Calc 4.6
Calc 4.6Calc 4.6
Calc 4.6
 
02 vectors
02 vectors02 vectors
02 vectors
 
Lar calc10 ch04_sec4
Lar calc10 ch04_sec4Lar calc10 ch04_sec4
Lar calc10 ch04_sec4
 
Mathematical modeling
Mathematical modelingMathematical modeling
Mathematical modeling
 
Curve fitting - Lecture Notes
Curve fitting - Lecture NotesCurve fitting - Lecture Notes
Curve fitting - Lecture Notes
 
Solid angle subtended by a rectangular plane at any point in the space
Solid angle subtended by a rectangular plane at any point in the space Solid angle subtended by a rectangular plane at any point in the space
Solid angle subtended by a rectangular plane at any point in the space
 
5.13.2 Area of Regular Polygons and Composite Shapes
5.13.2 Area of Regular Polygons and Composite Shapes5.13.2 Area of Regular Polygons and Composite Shapes
5.13.2 Area of Regular Polygons and Composite Shapes
 
case study of curve fitting
case study of curve fittingcase study of curve fitting
case study of curve fitting
 
Triangle law of vector addition
Triangle law of vector additionTriangle law of vector addition
Triangle law of vector addition
 
Assignment calculus (repaired)
Assignment calculus (repaired)Assignment calculus (repaired)
Assignment calculus (repaired)
 
Vectors.pdf
Vectors.pdfVectors.pdf
Vectors.pdf
 

En vedette

دراسات بيت المقدس
دراسات بيت المقدسدراسات بيت المقدس
دراسات بيت المقدسAmaal Al shaar
 
Unyuin vinyl tile patterns
Unyuin vinyl tile patternsUnyuin vinyl tile patterns
Unyuin vinyl tile patternsKevin Yang
 
Latihan 3 andra point
Latihan 3 andra pointLatihan 3 andra point
Latihan 3 andra pointandraabai
 
Searching andra
Searching andraSearching andra
Searching andraandraabai
 
Still life photography in delhi
Still life photography in delhiStill life photography in delhi
Still life photography in delhichandnicommercial
 
Stastistics
StastisticsStastistics
StastisticsRivan001
 
Waddesdon Wine Catalogue Winter 2015
Waddesdon Wine Catalogue Winter 2015Waddesdon Wine Catalogue Winter 2015
Waddesdon Wine Catalogue Winter 2015Christopher Campbell
 
STEVEN BURGER HOLLYWOOD RESUME'
STEVEN BURGER HOLLYWOOD RESUME'STEVEN BURGER HOLLYWOOD RESUME'
STEVEN BURGER HOLLYWOOD RESUME'STEVEN BURGER
 
SoCap Panel with OSC2: Beyond Fair Trade
SoCap Panel with OSC2: Beyond Fair TradeSoCap Panel with OSC2: Beyond Fair Trade
SoCap Panel with OSC2: Beyond Fair TradePluot Consulting
 
SPC WOCRC ROI report_dec2016
SPC WOCRC ROI report_dec2016SPC WOCRC ROI report_dec2016
SPC WOCRC ROI report_dec2016Julie McKercher
 
OSC2 Compostable Packaging Coalition: an Overview
OSC2 Compostable Packaging Coalition: an OverviewOSC2 Compostable Packaging Coalition: an Overview
OSC2 Compostable Packaging Coalition: an OverviewPluot Consulting
 
Helen Wood- Undergraduate Dissertation (1)
Helen Wood- Undergraduate Dissertation (1)Helen Wood- Undergraduate Dissertation (1)
Helen Wood- Undergraduate Dissertation (1)Helen Chard
 

En vedette (20)

دراسات بيت المقدس
دراسات بيت المقدسدراسات بيت المقدس
دراسات بيت المقدس
 
Unyuin vinyl tile patterns
Unyuin vinyl tile patternsUnyuin vinyl tile patterns
Unyuin vinyl tile patterns
 
Latihan 3 andra point
Latihan 3 andra pointLatihan 3 andra point
Latihan 3 andra point
 
Vagrant&amp;ansible
Vagrant&amp;ansibleVagrant&amp;ansible
Vagrant&amp;ansible
 
Searching andra
Searching andraSearching andra
Searching andra
 
Still life photography in delhi
Still life photography in delhiStill life photography in delhi
Still life photography in delhi
 
Stastistics
StastisticsStastistics
Stastistics
 
Waddesdon Wine Catalogue Winter 2015
Waddesdon Wine Catalogue Winter 2015Waddesdon Wine Catalogue Winter 2015
Waddesdon Wine Catalogue Winter 2015
 
Inncempro_referenties
Inncempro_referentiesInncempro_referenties
Inncempro_referenties
 
STEVEN BURGER HOLLYWOOD RESUME'
STEVEN BURGER HOLLYWOOD RESUME'STEVEN BURGER HOLLYWOOD RESUME'
STEVEN BURGER HOLLYWOOD RESUME'
 
Newsletter Final.compressed
Newsletter Final.compressedNewsletter Final.compressed
Newsletter Final.compressed
 
SoCap Panel with OSC2: Beyond Fair Trade
SoCap Panel with OSC2: Beyond Fair TradeSoCap Panel with OSC2: Beyond Fair Trade
SoCap Panel with OSC2: Beyond Fair Trade
 
Название
НазваниеНазвание
Название
 
what is CUSD doing
what is CUSD doingwhat is CUSD doing
what is CUSD doing
 
DESCRIPTION OF THE COMPUTER
DESCRIPTION OF THE COMPUTERDESCRIPTION OF THE COMPUTER
DESCRIPTION OF THE COMPUTER
 
Data Management & truancy
Data Management & truancyData Management & truancy
Data Management & truancy
 
SPC WOCRC ROI report_dec2016
SPC WOCRC ROI report_dec2016SPC WOCRC ROI report_dec2016
SPC WOCRC ROI report_dec2016
 
Communications Portfolio single pdf
Communications Portfolio single pdfCommunications Portfolio single pdf
Communications Portfolio single pdf
 
OSC2 Compostable Packaging Coalition: an Overview
OSC2 Compostable Packaging Coalition: an OverviewOSC2 Compostable Packaging Coalition: an Overview
OSC2 Compostable Packaging Coalition: an Overview
 
Helen Wood- Undergraduate Dissertation (1)
Helen Wood- Undergraduate Dissertation (1)Helen Wood- Undergraduate Dissertation (1)
Helen Wood- Undergraduate Dissertation (1)
 

Similaire à Stolarsky_Interacting_Particles_midterm_presentation

Section 1.3 -- The Coordinate Plane
Section 1.3 -- The Coordinate PlaneSection 1.3 -- The Coordinate Plane
Section 1.3 -- The Coordinate PlaneRob Poodiack
 
Plano numerico
Plano numericoPlano numerico
Plano numericoroxi13
 
Lines and angles /GEOMETRY
Lines and angles /GEOMETRYLines and angles /GEOMETRY
Lines and angles /GEOMETRYindianeducation
 
Museum Paper Rubric50 pointsRubric below is a chart form of .docx
Museum Paper Rubric50 pointsRubric below is a chart form of .docxMuseum Paper Rubric50 pointsRubric below is a chart form of .docx
Museum Paper Rubric50 pointsRubric below is a chart form of .docxgilpinleeanna
 
114333628 irisan-kerucut
114333628 irisan-kerucut114333628 irisan-kerucut
114333628 irisan-kerucuthafifa asiah
 
114333628 irisan-kerucut
114333628 irisan-kerucut114333628 irisan-kerucut
114333628 irisan-kerucutaisha asiah
 
Tipler para cientistas e engenheiros resolução 6 edição
Tipler para cientistas e engenheiros resolução 6 ediçãoTipler para cientistas e engenheiros resolução 6 edição
Tipler para cientistas e engenheiros resolução 6 ediçãoLowrrayny Franchesca
 
Tipler volume 2 resolução 6 edição
Tipler volume 2 resolução 6 ediçãoTipler volume 2 resolução 6 edição
Tipler volume 2 resolução 6 ediçãoMariana Andrade
 
Autonomous Perching Quadcopter
Autonomous Perching QuadcopterAutonomous Perching Quadcopter
Autonomous Perching QuadcopterYucheng Chen
 
Higher formal homeworks unit 3
Higher formal homeworks   unit 3Higher formal homeworks   unit 3
Higher formal homeworks unit 3sjamaths
 
maths sample paper class 9 SA2
maths sample paper class 9 SA2maths sample paper class 9 SA2
maths sample paper class 9 SA2Garvit19
 

Similaire à Stolarsky_Interacting_Particles_midterm_presentation (20)

A non-Euclidean model
A non-Euclidean modelA non-Euclidean model
A non-Euclidean model
 
A non-Euclidean model
A non-Euclidean modelA non-Euclidean model
A non-Euclidean model
 
Section 1.3 -- The Coordinate Plane
Section 1.3 -- The Coordinate PlaneSection 1.3 -- The Coordinate Plane
Section 1.3 -- The Coordinate Plane
 
Circles
CirclesCircles
Circles
 
Triangles ix
Triangles ixTriangles ix
Triangles ix
 
Plano numerico
Plano numericoPlano numerico
Plano numerico
 
Lines and angles /GEOMETRY
Lines and angles /GEOMETRYLines and angles /GEOMETRY
Lines and angles /GEOMETRY
 
Museum Paper Rubric50 pointsRubric below is a chart form of .docx
Museum Paper Rubric50 pointsRubric below is a chart form of .docxMuseum Paper Rubric50 pointsRubric below is a chart form of .docx
Museum Paper Rubric50 pointsRubric below is a chart form of .docx
 
Dimensioning
DimensioningDimensioning
Dimensioning
 
Dimensioning
DimensioningDimensioning
Dimensioning
 
C1 g9-s1-t7-2
C1 g9-s1-t7-2C1 g9-s1-t7-2
C1 g9-s1-t7-2
 
114333628 irisan-kerucut
114333628 irisan-kerucut114333628 irisan-kerucut
114333628 irisan-kerucut
 
114333628 irisan-kerucut
114333628 irisan-kerucut114333628 irisan-kerucut
114333628 irisan-kerucut
 
Tipler para cientistas e engenheiros resolução 6 edição
Tipler para cientistas e engenheiros resolução 6 ediçãoTipler para cientistas e engenheiros resolução 6 edição
Tipler para cientistas e engenheiros resolução 6 edição
 
Tipler volume 2 resolução 6 edição
Tipler volume 2 resolução 6 ediçãoTipler volume 2 resolução 6 edição
Tipler volume 2 resolução 6 edição
 
Autonomous Perching Quadcopter
Autonomous Perching QuadcopterAutonomous Perching Quadcopter
Autonomous Perching Quadcopter
 
Higher formal homeworks unit 3
Higher formal homeworks   unit 3Higher formal homeworks   unit 3
Higher formal homeworks unit 3
 
maths sample paper class 9 SA2
maths sample paper class 9 SA2maths sample paper class 9 SA2
maths sample paper class 9 SA2
 
Electrical Engineering Assignment Help
Electrical Engineering Assignment HelpElectrical Engineering Assignment Help
Electrical Engineering Assignment Help
 
Circles-GEOMETRY
Circles-GEOMETRYCircles-GEOMETRY
Circles-GEOMETRY
 

Stolarsky_Interacting_Particles_midterm_presentation

  • 1. Background and Project Description Line Ellipse Rectangle Future Work Interacting Particles Midterm Report University of Illinois at Urbana-Champaign Department of Mathematics Illinois Geometry Lab October 29, 2015
  • 2. Background and Project Description Line Ellipse Rectangle Future Work Background n-diameter A generalization of the diameter. For n points, find them such that the geometric mean of the distances between them is maximized. Equivalently, maximize the product of the distances between points. Our Project Find the n-diameter and the configuration of points that gives it for a given shape. This may be very expensive to calculate; it may be better to make an approximation by finding a configuration with equal arc lengths or equal Euclidean distances.
  • 3. Background and Project Description Line Ellipse Rectangle Future Work Line Intuitively, one might think that the maximizing configuration on the line would be to divide the line into equal segments. However, this is not so. For example, f = (1 0) (x 0) (1 x) [(1 x) 0] [1 (1 x)] [x (1 x)] = x2 (x 1)2 (2x 1) df dx = 2 f x + 2 f x 1 + 2 f 2x 1 = 0 0 = 2x2 2x x + 1 + 2x2 x + x2 x 0 = 5x2 5x + 1 x = 1 2 ✓ 1 ± 1 p 5 ◆ This problem for the line has already been solved in general.
  • 4. Background and Project Description Line Ellipse Rectangle Future Work General Problem Ellipse For an ellipse with unital major axis and minor axis of length a (so a < 1), note that it becomes more line-like as a ! 0. For example, for n = 3, if we assume that it must be symmetric about the x-axis, the solution can be found to be points at p1 = (a, 0) p2 = x, r 1 ⇣x a ⌘2 ! p3 = x, r 1 ⇣x a ⌘2 ! x = a " a2 + 3 p 25a4 18a2 + 9 6 (a2 1) # As a ! 0, x ! 0 and so
  • 5. Background and Project Description Line Ellipse Rectangle Future Work General Problem Ellipse As a ! 0, x ! 0 and so p1 = (a, 0) p2 = (0, 1) p3 = (0, 1) Note that these are solution is not necessarily symmetric for the n = 3 case. However, our numerical solution returned a symmetric result, so this should be a good assumption. Conjecture: The points for the n-diameter on the ellipse will alternate sides.
  • 6. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.9
  • 7. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.8
  • 8. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.7
  • 9. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.6
  • 10. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.5
  • 11. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.4
  • 12. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.3
  • 13. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.2
  • 14. Background and Project Description Line Ellipse Rectangle Future Work Images Ellipse - a = 0.1
  • 15. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Arc length approximation Research on the movement of three particles on a given ellipse Hold the arc length between every two particles the same Attempt to find the distribution of particles with maximum product of diameters Find the trajectory of center of mass when three particles moving
  • 16. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Conjecture (1) The trajectory of center of mass may be some ’beautiful’ figure (2) The center of mass may never fall on the original (3) The distribution of three particles with maximum product of diameters may be symmetric
  • 17. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Methodology Choose the fixed ellipse with expression x2 52 + y2 32 = 1 Apply numerical method and recursion in calculation and programming Conduct simulation with help of Java and Mathematica
  • 18. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures Figure: Particles distribution with one at rightmost
  • 19. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures
  • 20. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures
  • 21. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures
  • 22. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures
  • 23. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures
  • 24. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures
  • 25. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures Figure: Trajectory of center of mass.
  • 26. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Figures Figure: Distribution of particles with maximum product of diameters.
  • 27. Background and Project Description Line Ellipse Rectangle Future Work Arc length approximation Results and Findings Trajectory of center of mass is an ellipse with the same shape as the ellipse that we are researching on, except a much smaller size The center of mass never falls on the original The distribution of three particles with maximum product of diameters is almost symmetric, with one particle falling on the lowest position on ellipse. (not exactly symmetric may due to precision in calculation)
  • 28. Background and Project Description Line Ellipse Rectangle Future Work Triangle CoM Modeling the Trajectory of the Center of Mass Given a unit square and 3 points on its edges, A, B, and C, that divide the perimeter of the square into three equal-length pieces, we want to identify the center of mass of the triangle 4ABC and model the trajectory of its center of mass in terms of the location of the three points. Due to the symmetric nature of the square, it su ces to consider the movement of one of the three points on one edge As A travels on the edges of the square in a full cycle, the CoM of 4ABC moves around the center of the square on a small rectangle for 3 cycles. The vertices of the small rectangle is given by (4 9 , 4 9 ), (4 9 , 5 9 ), (5 9 , 5 9 ), and (5 9 , 4 9 ).
  • 29. Background and Project Description Line Ellipse Rectangle Future Work Triangle CoM
  • 30. Background and Project Description Line Ellipse Rectangle Future Work Triangle CoM
  • 31. Background and Project Description Line Ellipse Rectangle Future Work Triangle CoM
  • 32. Background and Project Description Line Ellipse Rectangle Future Work Triangle CoM
  • 33. Background and Project Description Line Ellipse Rectangle Future Work Triangle CoM 3-Diameter Problem Given the triangle 4ABC given above, we are interested in maximizing the product of the three diameters, i.e. AB · BC · AC. It can be shown that the product is maximized when the CoM of 4ABC lies on the 4 vertices of the small rectangle.
  • 34. Background and Project Description Line Ellipse Rectangle Future Work Mapping Finding n-diameters on rectangles We can represent the location on the rectangle by a mapping f : R ! R2. For example, f (0) = (0, 0) f (7) = (6, 1) f (12) = (4, 4) f (19) = (0, 1) f (22) = (2, 0)
  • 35. Background and Project Description Line Ellipse Rectangle Future Work Future Work Expand the research from 3-diameters to general n Improve speed of calculation Change the restriction same arc length to same length of diameter