قطع ناقص

عودة للموسوعة

بتر ناقص

An ellipse obtained as the intersection of a cone with an inclined plane.
The rings of Saturn are circular, but when seen partially edge on, as in this image, they appear to be ellipses. In addition, the planet itself is an ellipsoid, flatter at the poles than the equator. Picture by ESO

البتر الناقص أوالإهليلج (ellipse) (الحدثة آتية من اللاتينية بمعنى نقص absence) هوالمنحني الجبري المستوي الذي يحقق حتى مجموع بعد أي نقطة من هذا المنحنى عن نقطتين ثابتين داخله ( تدعيان البؤرتين foci واحده بؤرة focus) يبقى ثابتا.

البتر الناقص وبعض خصائصه

البتر الناقص هوأيضا أحد أنواع القطوع المخروطية, فعند بتر مخروط بمستوى لا يمر بقاعدته يصبح التقاطع بين المخروط والمستوي بترا ناقصا.

عناصر البتر الناقص

The ellipse and some of its mathematical properties.


رسم القطوع الناسيرة

طريقة الدبابيس والحبل

Drawing an ellipse with two pins, a loop, and a pen.


كيفية ترامل

Trammel of Archimedes (ellipsograph) animation


طريقة متوازي الأضلاع

تقريبات القطوع الناسيرة

الهندسة الإقليدية

التعريف

المعادلات

The equation of an ellipse whose major and minor axes coincide with the Cartesian axes is '"`UNIQ--postMath-00000001-QINU`"'

This means any noncircular ellipse is a squashed circle. If we draw an ellipse twice as long as it is wide, and draw the circle centered at the ellipse's center with diameter equal to the ellipse's longer axis, then on any line parallel to the shorter axis the length within the circle is twice the length within the ellipse. So the area enclosed by an ellipse is easy to calculate—it's the lengths of elliptic arcs that are hard.

البؤرة

The distance from the center C to either focus is f = ae, which can be expressed in terms of the major and minor radii:

'"`UNIQ--postMath-00000002-QINU`"'

Eccentricity

The eccentricity of the ellipse (commonly denoted as either e or '"`UNIQ--postMath-00000003-QINU`"') is

'"`UNIQ--postMath-00000004-QINU`"'

(where again a and b are one-half of the ellipse's major and minor axes respectively, and f is the focal distance) or, as expressed in terms using the flattening factor '"`UNIQ--postMath-00000005-QINU`"'

'"`UNIQ--postMath-00000006-QINU`"'

Directrix

Ellipse as hypotrochoid

An ellipse (in red) as a special case of the hypotrochoid with R = 2r.

The ellipse is a special case of the hypotrochoid when R = 2r.


المساحة

The area '"`UNIQ--postMath-00000007-QINU`"' enclosed by an ellipse is:

'"`UNIQ--postMath-00000008-QINU`"'

where a and b are one-half of the ellipse's major and minor axes respectively.

An ellipse defined implicitly by '"`UNIQ--postMath-00000009-QINU`"' has area '"`UNIQ--postMath-0000000A-QINU`"'.

The area formula πab is easy to understand: start with a circle of radius b (so its area is πb2) and stretch it by a factor a/b to make an ellipse. This increases the area by the same factor: πb2(a/b) = πab.

For the ellipse in standard form, '"`UNIQ--postMath-0000000B-QINU`"', and hence '"`UNIQ--postMath-0000000C-QINU`"', with horizontal intercepts at ± a, the area '"`UNIQ--postMath-0000000D-QINU`"' can be computed as twice the integral of the positive square root:

'"`UNIQ--postMath-0000000E-QINU`"'

The second integral is the area of a circle of radius '"`UNIQ--postMath-0000000F-QINU`"', i.e., '"`UNIQ--postMath-00000010-QINU`"'; thus we have '"`UNIQ--postMath-00000011-QINU`"'.

The area formula can also be proven in terms of polar coordinates using the coordinate transformation '"`UNIQ--postMath-00000012-QINU`"'

Any point inside the ellipse with x-intercept a and y-intercept b can be defined in terms of r and '"`UNIQ--postMath-00000013-QINU`"', where '"`UNIQ--postMath-00000014-QINU`"' and '"`UNIQ--postMath-00000015-QINU`"'.

To define the area differential in such coordinates we use the Jacobian matrix of the coordinate transformation times '"`UNIQ--postMath-00000016-QINU`"': '"`UNIQ--postMath-00000017-QINU`"'. We now integrate over the ellipse to find the area: '"`UNIQ--postMath-00000018-QINU`"'.

المحيط

The circumference '"`UNIQ--postMath-00000019-QINU`"' of an ellipse is:

'"`UNIQ--postMath-0000001A-QINU`"'

where again a is the length of the semi-major axis and e is the eccentricity and where the function '"`UNIQ--postMath-0000001B-QINU`"' is the complete elliptic integral of the second kind. This may be evaluated directly using the Carlson symmetric form as illustrated by the following python code (this converges quadratically):

def EllipseCircumference(a, b):
   """
   Compute the circumference of an ellipse with semi-axes a and b.
   Require a >= 0 and b >= 0.  Relative accuracy is about 0.5^53.
   """
   import math
   x, y = max(a, b), min(a, b)
   digits = 53; tol = math.sqrt(math.pow(0.5, digits))
   if digits * y < tol * x: return 4 * x
   s = 0; m = 1
   while x - y > tol * y:
      x, y = 0.5 * (x + y), math.sqrt(x * y)
      m *= 2; s += m * math.pow(x - y, 2)
   return math.pi * (math.pow(a + b, 2) - s) / (x + y)

The exact infinite series is:

'"`UNIQ--postMath-0000001C-QINU`"'

or

'"`UNIQ--postMath-0000001D-QINU`"'

where '"`UNIQ--postMath-0000001E-QINU`"' is the double factorial. Unfortunately, this series converges rather slowly; however, by expanding in terms of '"`UNIQ--postMath-0000001F-QINU`"', Ivory and Bessel derived an expression which converges much more rapidly,

'"`UNIQ--postMath-00000020-QINU`"'

A good approximation is Ramanujan's:

'"`UNIQ--postMath-00000021-QINU`"'

and a better approximation is

'"`UNIQ--postMath-00000022-QINU`"'

For the special case where the minor axis is half the major axis, these become:

'"`UNIQ--postMath-00000023-QINU`"'

or, as an estimate of the better approximation,

'"`UNIQ--postMath-00000024-QINU`"'

More generally, the arc length of a portion of the circumference, as a function of the angle subtended, is given by an incomplete elliptic integral.

The inverse function, the angle subtended as a function of the arc length, is given by the elliptic functions.[]

الأوتار

The midpoints of a set of parallel chords of an ellipse are collinear.:p.147

Latus rectum

The chords of an ellipse which are perpendicular to the major axis and pass through one of its foci are called the latera recta of the ellipse. The length of each latus rectum is 2b2/a.

الانحناء

The curvature is '"`UNIQ--postMath-00000025-QINU`"'

المعادلة الجبرية

جبريا, البتر الناقص هو منحنى في المستوى الكارتيزي معهد بالمعادلة:

'"`UNIQ--postMath-00000026-QINU`"'

بحيث ان جميع المعاملات حقيقية وبحيث '"`UNIQ--postMath-00000027-QINU`"'. وجود أكثر من حل لقيم معينة لx, يعهد زوجا من النقاط (x, y1) و(x, y2) تقع على البتر الناقص.

ولإيجاد القانون العام للبتر الناقص, نستعمل التعريف التالي:

'"`UNIQ--postMath-00000028-QINU`"'

حيث:

- P هي نقطة (x,y) تقع على البتر

- S البؤرة

- e معامل الاختلاف المركزي ( e<1 )

- و m هي مسقط العمودي ل P على الدليل

ويعبر القانون (أوالمعادلة) على كون نسبة المسافة بين النقطة والبؤرة والمسافة بين النقطة والدليل ثابثة وتساوي معامل الاختلاف المركزي e.


في حساب المثلثات

الشكل المتغير العام

An ellipse in general position can be expressed parametrically as the path of a point '"`UNIQ--postMath-00000029-QINU`"', where

'"`UNIQ--postMath-0000002A-QINU`"'
'"`UNIQ--postMath-0000002B-QINU`"'

as the parameter t varies from 0 to 2π. Here '"`UNIQ--postMath-0000002C-QINU`"' is the center of the ellipse, and '"`UNIQ--postMath-0000002D-QINU`"' is the angle between the '"`UNIQ--postMath-0000002E-QINU`"'-axis and the major axis of the ellipse.

الشكل المتغير في الوضع التعريفي

Parametric equation for the ellipse (red) in canonical position. The eccentric anomaly t is the angle of the blue line with the X-axis.

For an ellipse in canonical position (center at origin, major axis along the X-axis), the equation simplifies to

'"`UNIQ--postMath-0000002F-QINU`"'
'"`UNIQ--postMath-00000030-QINU`"'

Note that the parameter t (called the eccentric anomaly in astronomy) is not the angle of '"`UNIQ--postMath-00000031-QINU`"' with the X-axis.


'"`UNIQ--postMath-00000032-QINU`"'
'"`UNIQ--postMath-00000033-QINU`"'

الشكل القطبي بالنسبة للمركز

Polar coordinates centered at the center.

In polar coordinates, with the origin at the center of the ellipse and with the angular coordinate '"`UNIQ--postMath-00000034-QINU`"' measured from the major axis, the ellipse's equation is

'"`UNIQ--postMath-00000035-QINU`"'

الشكل القطبي بالنسبة للبؤرة

Polar coordinates centered at focus.

If instead we use polar coordinates with the origin at one focus, with the angular coordinate '"`UNIQ--postMath-00000036-QINU`"' still measured from the major axis, the ellipse's equation is

'"`UNIQ--postMath-00000037-QINU`"'

where the sign in the denominator is negative if the reference direction '"`UNIQ--postMath-00000038-QINU`"' points towards the center (as illustrated on the right), and positive if that direction points away from the center.

In the slightly more general case of an ellipse with one focus at the origin and the other focus at angular coordinate '"`UNIQ--postMath-00000039-QINU`"', the polar form is

'"`UNIQ--postMath-0000003A-QINU`"'
Semi-latus rectum.


الشكل القطبي العام

The following equation on the polar coordinates (rθ) describes a general ellipse with semidiameters a and b, centered at a point (r0θ0), with the a axis rotated by φ relative to the polar axis:[]

'"`UNIQ--postMath-0000003B-QINU`"'

حيث

'"`UNIQ--postMath-0000003C-QINU`"'
'"`UNIQ--postMath-0000003D-QINU`"'
'"`UNIQ--postMath-0000003E-QINU`"'

Angular eccentricity

The angular eccentricity '"`UNIQ--postMath-0000003F-QINU`"' is the angle whose sine is the eccentricity e; that is,

'"`UNIQ--postMath-00000040-QINU`"'

درجات الحرية

القطوع الناسيرة في الفيزياء

العاكسات الإهليلجية وفهم الصوت

مدارات الكواكب

For elliptical orbits, useful relations involving the eccentricity '"`UNIQ--postMath-00000041-QINU`"' are:

'"`UNIQ--postMath-00000042-QINU`"'
'"`UNIQ--postMath-00000043-QINU`"'
'"`UNIQ--postMath-00000044-QINU`"'

حيث

  • '"`UNIQ--postMath-00000045-QINU`"' is the radius at apoapsis (the farthest distance)
  • '"`UNIQ--postMath-00000046-QINU`"' is the radius at periapsis (the closest distance)
  • '"`UNIQ--postMath-00000047-QINU`"' is the length of the semi-major axis

Also, in terms of '"`UNIQ--postMath-00000048-QINU`"' and '"`UNIQ--postMath-00000049-QINU`"', the semi-major axis '"`UNIQ--postMath-0000004A-QINU`"' is their arithmetic mean, the semi-minor axis '"`UNIQ--postMath-0000004B-QINU`"' is their geometric mean, and the semi-latus rectum '"`UNIQ--postMath-0000004C-QINU`"' is their harmonic mean. In other words,

'"`UNIQ--postMath-0000004D-QINU`"'
'"`UNIQ--postMath-0000004E-QINU`"'
'"`UNIQ--postMath-0000004F-QINU`"'.

المتأرجحات المتناغمة

انظر أيضاً

  • Apollonius of Perga, the classical authority
  • Cartesian oval, a generalization of the ellipse
  • Circumconic and inconic
  • Conic section
  • Ellipsoid, a higher dimensional analog of an ellipse
  • Elliptic coordinates, an orthogonal coordinate system based on families of ellipses and hyperbolae
  • Elliptical distribution, in statistics
  • Elliptic partial differential equation
  • Great ellipse
  • Hyperbola
  • Kepler's laws of planetary motion
  • Matrix representation of conic sections
  • -ellipse, a generalization of the ellipse for n foci
  • Oval
  • Parabola
  • Proofs involving the ellipse
  • Spheroid, the ellipsoid obtained by rotating an ellipse about its major or minor axis
  • Steiner circumellipse, the unique ellipse circumscribing a triangle and sharing its centroid
  • Steiner inellipse, the unique ellipse inscribed in a triangle with tangencies at the sides' midpoints
  • Superellipse, a generalization of an ellipse that can look more rectangular or more "pointy"
  • True, eccentric, and mean anomaly
  • Geodesics on an ellipsoid

المراجع

  • Besant, W.H. (1907). "Chapter III. The Ellipse". . London: George Bell and Sons. p. 50.
  • Miller, Charles D.; Lial, Margaret L.; Schneider, David I. (1990). Fundamentals of College Algebra (3rd ed.). Scott Foresman/Little. p. 381. ISBN .CS1 maint: multiple names: authors list (link)
  • Coxeter, H.S.M. (1969). Introduction to Geometry (2nd ed.). New York: Wiley. pp. 115–9.
  • Ellipse at Planetmath
  • Eric W. Weisstein, Ellipse at MathWorld.

الهامش

  1. ^ DOI:10.1007/BF02198293
    This citation will be automatically completed in the next few minutes. You can jump the queue or expand by hand
  2. ^ Ivory, J. (1798). "A new series for the rectification of the ellipsis". Transactions of the Royal Society of Edinburgh. 4: 177–190.
  3. ^ Bessel, F. W. (2010). "The calculation of longitude and latitude from geodesic measurements (1825)". Astron. Nachr. 331 (8): 852–861. arXiv:0908.1824. doi:10.1002/asna.201011352. English translation of Astron. Nachr. 4, 241-254 (1825).
  4. ^ Chakerian, G. D. "A Distorted View of Geometry." Ch.سبعة in Mathematical Plums (R. Honsberger, editor). Washington, DC: Mathematical Association of America, 1979.

وصلات خارجية

  • Video: How to draw Ellipse
  • Apollonius' Derivation of the Ellipse at Convergence
  • The Shape and History of The Ellipse in Washington, D.C. by Clark Kimberling
  • Collection of animated ellipse demonstrations. Ellipse, axes, semi-axes, area, perimeter, tangent, foci.
  • Eric W. Weisstein, Ellipse as hypotrochoid at MathWorld.
  • Ivanov, A.B. (2001), "Ellipse", in Hazewinkel, Michiel, Encyclopaedia of Mathematics, Kluwer Academic Publishers, ISBN 978-1556080104 
تاريخ النشر: 2020-06-04 14:12:33
التصنيفات: Pages with incomplete DOI references, صفحات بها أخطاء في البرنامج النصي, All articles with unsourced statements, Articles with unsourced statements from October 2010, Articles with invalid date parameter in template, Articles with unsourced statements from October 2012, CS1 maint: multiple names: authors list, Commons category link is locally defined, منحنيات, أشكال ابتدائية, قطوع مخروطية

مقالات أخرى من الموسوعة

سحابة الكلمات المفتاحية، مما يبحث عنه الزوار في كشاف:

آخر الأخبار حول العالم

البرمجة تضعف كلاسيكو الجيش والوداد جماهيريا

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:24
مستوى الصحة: 62% الأهمية: 77%

«الشيوخ» يقدمون التهنئة لإخوتهم المسيحيون بعيد الميلاد 

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:06
مستوى الصحة: 47% الأهمية: 55%

أكثر من 10مليون مواطن يصرفون معاشات يناير بداية العام الجديد

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:02
مستوى الصحة: 59% الأهمية: 50%

وزير الداخلية يبحث مع مساعديه خطط تأمين احتفالات رأس السنة| فيديو

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:19:58
مستوى الصحة: 45% الأهمية: 57%

جلسات الحوار الوطني للمحور الاقتصادي تنطلق يناير 2023

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:12
مستوى الصحة: 47% الأهمية: 62%

مواجهات نارية في انتظار الأهلي خلال شهر يناير

المصدر: الأهلى . كوم - مصر التصنيف: رياضة
تاريخ الخبر: 2022-12-29 18:19:38
مستوى الصحة: 32% الأهمية: 49%

لقجع يعلق على “المهلة الجزائرية” للرد على شرط المغرب

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:17
مستوى الصحة: 68% الأهمية: 83%

رئيس اتحاد الجمعيات الأهلية :المجتمع المدني يتصدي للقضية السكنية 2023

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:14
مستوى الصحة: 48% الأهمية: 64%

تسجيل 53 إصابة جديدة بفيروس كورونا ولا وفيات

المصدر: أخبارنا المغربية - المغرب التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:19:33
مستوى الصحة: 56% الأهمية: 52%

الازهر يحسم الجدل: وقوع الطلاق الشفوي المكتمل الشروط والأركان

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:19:57
مستوى الصحة: 55% الأهمية: 69%

7 تعيينات في مناصب عليا خلال آخر مجلس حكومي في 2022

المصدر: أخبارنا المغربية - المغرب التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:19:34
مستوى الصحة: 58% الأهمية: 66%

تصريحات جديدة لفوزي لقجع بخصوص “فضيحة تذاكر المونديال”

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:20
مستوى الصحة: 69% الأهمية: 70%

الخطيب: 50 ألف خريج فلسطيني من الجامعات السوفيتية والروسية

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:15
مستوى الصحة: 49% الأهمية: 60%

تعرف على أمنيات العمل المناخي في عام 2023 للأمم المتحدة| فيديو 

المصدر: بوابة أخبار اليوم - مصر التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:20:08
مستوى الصحة: 54% الأهمية: 53%

الخدمة العسكرية ستشهد إضافة تخصصات جديدة

المصدر: أخبارنا المغربية - المغرب التصنيف: سياسة
تاريخ الخبر: 2022-12-29 18:19:32
مستوى الصحة: 58% الأهمية: 62%

تحميل تطبيق المنصة العربية