0
EN
1
المرجع الالكتروني للمعلوماتية

تاريخ الرياضيات

الاعداد و نظريتها

تاريخ التحليل

تار يخ الجبر

الهندسة و التبلوجي

الرياضيات في الحضارات المختلفة

العربية

اليونانية

البابلية

الصينية

المايا

المصرية

الهندية

الرياضيات المتقطعة

المنطق

اسس الرياضيات

فلسفة الرياضيات

مواضيع عامة في المنطق

الجبر

الجبر الخطي

الجبر المجرد

الجبر البولياني

مواضيع عامة في الجبر

الضبابية

نظرية المجموعات

نظرية الزمر

نظرية الحلقات والحقول

نظرية الاعداد

نظرية الفئات

حساب المتجهات

المتتاليات-المتسلسلات

المصفوفات و نظريتها

المثلثات

الهندسة

الهندسة المستوية

الهندسة غير المستوية

مواضيع عامة في الهندسة

التفاضل و التكامل

المعادلات التفاضلية و التكاملية

معادلات تفاضلية

معادلات تكاملية

مواضيع عامة في المعادلات

التحليل

التحليل العددي

التحليل العقدي

التحليل الدالي

مواضيع عامة في التحليل

التحليل الحقيقي

التبلوجيا

نظرية الالعاب

الاحتمالات و الاحصاء

نظرية التحكم

بحوث العمليات

نظرية الكم

الشفرات

الرياضيات التطبيقية

نظريات ومبرهنات

علماء الرياضيات

500AD

500-1499

1000to1499

1500to1599

1600to1649

1650to1699

1700to1749

1750to1779

1780to1799

1800to1819

1820to1829

1830to1839

1840to1849

1850to1859

1860to1864

1865to1869

1870to1874

1875to1879

1880to1884

1885to1889

1890to1894

1895to1899

1900to1904

1905to1909

1910to1914

1915to1919

1920to1924

1925to1929

1930to1939

1940to the present

علماء الرياضيات

الرياضيات في العلوم الاخرى

بحوث و اطاريح جامعية

هل تعلم

طرائق التدريس

الرياضيات العامة

نظرية البيان

قم بتسجيل الدخول اولاً لكي يتسنى لك الاعجاب والتعليق.

Fixed Point

المؤلف:  Shashkin, Yu. A

المصدر:  Fixed Points. Providence, RI: Amer. Math. Soc., 1991.

الجزء والصفحة:  ...

14-4-2020

2786

+

-

20

Fixed Point

A fixed point is a point that does not change upon application of a map, system of differential equations, etc. In particular, a fixed point of a function f(x) is a point x_0 such that

 f(x_0)=x_0.

(1)

The fixed point of a function f starting from an initial value x can be computed in the Wolfram Language using FixedPoint[fx]. Similarly, to get a list of the values obtained by iterating the function until a fixed point is reached, the command FixedPointList[fx] can be used.

The following table lists the smallest positive fixed points for several simple functions.

function fixed point OEIS
cosecant 1.1141571408 A133866
cosine 0.7390851332 A003957
cotangent 0.8603335890 A069855
hyperbolic cosecant 0.9320200293 A133867
hyperbolic cosine -- --
hyperbolic cotangent 1.1996786402 A085984
hyperbolic secant 0.7650099545 A069814
hyperbolic sine 0 --
hyperbolic tangent 0 --
inverse cosecant 1.1141571408 A133866
inverse cosine 0.7390851332 A003957
inverse cotangent 0.8603335890 A069855
inverse hyperbolic cosecant 0.9320200293 A133867
inverse hyperbolic cosine -- --
inverse hyperbolic cotangent 1.1996786402 A085984
inverse hyperbolic secant 0.7650099545 A069814
inverse hyperbolic sine 0 --
inverse hyperbolic tangent 0 --
inverse secant -- --
inverse sine 0 --
inverse tangent 0 --
secant 4.9171859252 A133868
sine 0 --
tangent 4.4934094579 A115365

FixedPointCosFixedPointSin

Fixed points of functions in the complex plane commonly lead to beautiful fractal structures. For example, the plots above color the value of the fixed point (left figures) and the number of iterations to reach a fixed point (right figures) for cosine (top) and sine (bottom). Newton's method, which essentially involves a fixed point computation in order to find roots, leads to similar fractals in an analogous way.

Points of an autonomous system of ordinary differential equations at which

 <span style={(dx_1)/(dt)=f_1(x_1,...,x_n)=0; |; (dx_n)/(dt)=f_n(x_1,...,x_n)=0 " src="https://mathworld.wolfram.com/images/equations/FixedPoint/NumberedEquation2.gif" style="height:102px; width:158px" />

(2)

are known as fixed points.

If a variable is slightly displaced from a fixed point, it may (1) move back to the fixed point ("asymptotically stable" or "superstable"), (2) move away ("unstable"), or (3) move in a neighborhood of the fixed point but not approach it ("stable" but not "asymptotically stable"). Fixed points are also called critical points or equilibrium points. If a variable starts at a point that is not a critical point, it cannot reach a critical point in a finite amount of time. Also, a trajectory passing through at least one point that is not a critical point cannot cross itself unless it is a closed curve, in which case it corresponds to a periodic solution.

A fixed point can be classified into one of several classes using linear stability analysis and the resulting stability matrix.

The following table summarizes types of possible fixed points for a two-dimensional system (Tabor 1989, pp. 22-24).

lambda fixed point
lambda_1<lambda_2<0 stable node
lambda_1>lambda_2>0 unstable node
lambda_1<0<lambda_2 hyperbolic fixed point
lambda_(1,2)=-alpha+/-ibeta stable spiral point
lambda_(1,2)=alpha+/-ibeta unstable spiral point
lambda_(1,2)=+/-iomega elliptic fixed point
lambda_1=lambda_2<0D a null vector stable star
lambda_1=lambda_2>0D a null vector unstable star
lambda_1=lambda_2<0D not a null vector stable improper node
lambda_1=lambda_2>0D not a null vector unstable improper node

REFERENCES:

Shashkin, Yu. A. Fixed Points. Providence, RI: Amer. Math. Soc., 1991.

Tabor, M. "Linear Stability Analysis." §1.4 in Chaos and Integrability in Nonlinear Dynamics: An Introduction. New York: Wiley, pp. 20-31, 1989.

اخر الاخبار

اشترك بقناتنا على التلجرام ليصلك كل ما هو جديد