Ackermann function

In computability theory, the Ackermann function, named after Wilhelm Ackermann, is one of the simplest[1] and earliest-discovered examples of a total computable function that is not primitive recursive. All primitive recursive functions are total and computable, but the Ackermann function illustrates that not all total computable functions are primitive recursive.

After Ackermann's publication[2] of his function (which had three non-negative integer arguments), many authors modified it to suit various purposes, so that today "the Ackermann function" may refer to any of numerous variants of the original function. One common version is the two-argument Ackermann–Péter function developed by Rózsa Péter and Raphael Robinson. This function is defined from the recurrence relation with appropriate base cases. Its value grows very rapidly; for example, results in , an integer with 19,729 decimal digits.[3]

History

In the late 1920s, the mathematicians Gabriel Sudan and Wilhelm Ackermann, students of David Hilbert, were studying the foundations of computation. Both Sudan and Ackermann are credited[4] with discovering total computable functions (termed simply "recursive" in some references) that are not primitive recursive. Sudan published the lesser-known Sudan function, then shortly afterwards and independently, in 1928, Ackermann published his function (from Greek, the letter phi). Ackermann's three-argument function, , is defined such that for , it reproduces the basic operations of addition, multiplication, and exponentiation as

and for p > 2 it extends these basic operations in a way that can be compared to the hyperoperations:

(Aside from its historic role as a total-computable-but-not-primitive-recursive function, Ackermann's original function is seen to extend the basic arithmetic operations beyond exponentiation, although not as seamlessly as do variants of Ackermann's function that are specifically designed for that purpose—such as Goodstein's hyperoperation sequence.)

In On the Infinite,[5] David Hilbert hypothesized that the Ackermann function was not primitive recursive, but it was Ackermann, Hilbert's personal secretary and former student, who actually proved the hypothesis in his paper On Hilbert's Construction of the Real Numbers.[2][6]

Rózsa Péter[7] and Raphael Robinson[8] later developed a two-variable version of the Ackermann function that became preferred by almost all authors.

The generalized hyperoperation sequence, e.g. , is a version of the Ackermann function as well.[9]

In 1963 R.C. Buck based an intuitive two-variable [n 1] variant on the hyperoperation sequence:[10][11]

Compared to most other versions, Buck's function has no unessential offsets:

Many other versions of Ackermann function have been investigated.[12][13]

Definition

Definition: as m-ary function

Ackermann's original three-argument function is defined recursively as follows for nonnegative integers and :

Of the various two-argument versions, the one developed by Péter and Robinson (called "the" Ackermann function by most authors) is defined for nonnegative integers and as follows:

The Ackermann function has also been expressed in relation to the hyperoperation sequence:[14][15]

or, written in Knuth's up-arrow notation (extended to integer indices ):
or, equivalently, in terms of Buck's function F:[10]

Definition: as iterated 1-ary function

Define as the n-th iterate of :

Iteration is the process of composing a function with itself a certain number of times. Function composition is an associative operation, so .

Conceiving the Ackermann function as a sequence of unary functions, one can set .

The function then becomes a sequence of unary[n 2] functions, defined from iteration:

Computation

The recursive definition of the Ackermann function can naturally be transposed to a term rewriting system (TRS).

TRS, based on 2-ary function

The definition of the 2-ary Ackermann function leads to the obvious reduction rules [16][17]

Example

Compute

The reduction sequence is [n 3]

Leftmost-outermost (one-step) strategy:             Leftmost-innermost (one-step) strategy:
         
         
         
         
         
         

To compute one can use a stack, which initially contains the elements .

Then repeatedly the two top elements are replaced according to the rules[n 4]

Schematically, starting from :

WHILE stackLength <> 1
{
   POP 2 elements;
   PUSH 1 or 2 or 3 elements, applying the rules r1, r2, r3
}

The pseudocode is published in Grossman & Zeitman (1988).

For example, on input ,

the stack configurations     reflect the reduction[n 5]
         
         
         
         
         
         
         
         
         
         
         
         
         
         

Remarks

  • The leftmost-innermost strategy is implemented in 225 computer languages on Rosetta Code.
  • For all the computation of takes no more than steps.[18]
  • Grossman & Zeitman (1988) pointed out that in the computation of the maximum length of the stack is , as long as .
Their own algorithm, inherently iterative, computes within time and within space.

TRS, based on iterated 1-ary function

The definition of the iterated 1-ary Ackermann functions leads to different reduction rules

As function composition is associative, instead of rule r6 one can define

Like in the previous section the computation of can be implemented with a stack.

Initially the stack contains the three elements .

Then repeatedly the three top elements are replaced according to the rules[n 4]

Schematically, starting from :

WHILE stackLength <> 1
{
   POP 3 elements;
   PUSH 1 or 3 or 5 elements, applying the rules r4, r5, r6;
}

Example

On input the successive stack configurations are

The corresponding equalities are

When reduction rule r7 is used instead of rule r6, the replacements in the stack will follow

The successive stack configurations will then be

The corresponding equalities are

Remarks

  • On any given input the TRSs presented so far converge in the same number of steps. They also use the same reduction rules (in this comparison the rules r1, r2, r3 are considered "the same as" the rules r4, r5, r6/r7 respectively). For example, the reduction of converges in 14 steps: 6 × r1, 3 × r2, 5 × r3. The reduction of converges in the same 14 steps: 6 × r4, 3 × r5, 5 × r6/r7. The TRSs differ in the order in which the reduction rules are applied.
  • When is computed following the rules {r4, r5, r6}, the maximum length of the stack stays below . When reduction rule r7 is used instead of rule r6, the maximum length of the stack is only . The length of the stack reflects the recursion depth. As the reduction according to the rules {r4, r5, r7} involves a smaller maximum depth of recursion,[n 6] this computation is more efficient in that respect.

TRS, based on hyperoperators

As Sundblad (1971) — or Porto & Matos (1980) — showed explicitly, the Ackermann function can be expressed in terms of the hyperoperation sequence:

or, after removal of the constant 2 from the parameter list, in terms of Buck's function

Buck's function ,[10] a variant of Ackermann function by itself, can be computed with the following reduction rules:

Instead of rule b6 one can define the rule

To compute the Ackermann function it suffices to add three reduction rules

These rules take care of the base case A(0,n), the alignment (n+3) and the fudge (-3).

Example

Compute

using reduction rule :[n 5]     using reduction rule :[n 5]
         
         
         
         
         
         
                   
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         

The matching equalities are

  • when the TRS with the reduction rule is applied:
  • when the TRS with the reduction rule is applied:

Remarks

  • The computation of according to the rules {b1 - b5, b6, r8 - r10} is deeply recursive. The maximum depth of nested s is . The culprit is the order in which iteration is executed: . The first disappears only after the whole sequence is unfolded.
  • The computation according to the rules {b1 - b5, b7, r8 - r10} is more efficient in that respect. The iteration simulates the repeated loop over a block of code.[n 7] The nesting is limited to , one recursion level per iterated function. Meyer & Ritchie (1967) showed this correspondence.
  • These considerations concern the recursion depth only. Either way of iterating leads to the same number of reduction steps, involving the same rules (when the rules b6 and b7 are considered "the same"). The reduction of for instance converges in 35 steps: 12 × b1, 4 × b2, 1 × b3, 4 × b5, 12 × b6/b7, 1 × r9, 1 × r10. The modus iterandi only affects the order in which the reduction rules are applied.
  • A real gain of execution time can only be achieved by not recalculating subresults over and over again. Memoization is an optimization technique where the results of function calls are cached and returned when the same inputs occur again. See for instance Ward (1993). Grossman & Zeitman (1988) published a cunning algorithm which computes within time and within space.

Huge numbers

To demonstrate how the computation of results in many steps and in a large number:[n 5]

Table of values

Computing the Ackermann function can be restated in terms of an infinite table. First, place the natural numbers along the top row. To determine a number in the table, take the number immediately to the left. Then use that number to look up the required number in the column given by that number and one row up. If there is no number to its left, simply look at the column headed "1" in the previous row. Here is a small upper-left portion of the table:

Values of A(mn)
n
m
0 1 2 3 4 n
0 1 2 3 4 5
1 2 3 4 5 6
2 3 5 7 9 11
3 5 13 29 61 125
4 13 65533 265536 − 3





5 65533

6
m

The numbers here which are only expressed with recursive exponentiation or Knuth arrows are very large and would take up too much space to notate in plain decimal digits.

Despite the large values occurring in this early section of the table, some even larger numbers have been defined, such as Graham's number, which cannot be written with any small number of Knuth arrows. This number is constructed with a technique similar to applying the Ackermann function to itself recursively.

This is a repeat of the above table, but with the values replaced by the relevant expression from the function definition to show the pattern clearly:

Values of A(mn)
n
m
0 1 2 3 4 n
0 0+1 1+1 2+1 3+1 4+1 n + 1
1 A(0, 1) A(0, A(1, 0))
= A(0, 2)
A(0, A(1, 1))
= A(0, 3)
A(0, A(1, 2))
= A(0, 4)
A(0, A(1, 3))
= A(0, 5)
A(0, A(1, n−1))
2 A(1, 1) A(1, A(2, 0))
= A(1, 3)
A(1, A(2, 1))
= A(1, 5)
A(1, A(2, 2))
= A(1, 7)
A(1, A(2, 3))
= A(1, 9)
A(1, A(2, n−1))
3 A(2, 1) A(2, A(3, 0))
= A(2, 5)
A(2, A(3, 1))
= A(2, 13)
A(2, A(3, 2))
= A(2, 29)
A(2, A(3, 3))
= A(2, 61)
A(2, A(3, n−1))
4 A(3, 1) A(3, A(4, 0))
= A(3, 13)
A(3, A(4, 1))
= A(3, 65533)
A(3, A(4, 2)) A(3, A(4, 3)) A(3, A(4, n−1))
5 A(4, 1) A(4, A(5, 0)) A(4, A(5, 1)) A(4, A(5, 2)) A(4, A(5, 3)) A(4, A(5, n−1))
6 A(5, 1) A(5, A(6, 0)) A(5, A(6, 1)) A(5, A(6, 2)) A(5, A(6, 3)) A(5, A(6, n−1))

Properties

General remarks

  • It may not be immediately obvious that the evaluation of always terminates. However, the recursion is bounded because in each recursive application either decreases, or remains the same and decreases. Each time that reaches zero, decreases, so eventually reaches zero as well. (Expressed more technically, in each case the pair decreases in the lexicographic order on pairs, which is a well-ordering, just like the ordering of single non-negative integers; this means one cannot go down in the ordering infinitely many times in succession.) However, when decreases there is no upper bound on how much can increase — and it will often increase greatly.
  • For small values of m like 1, 2, or 3, the Ackermann function grows relatively slowly with respect to n (at most exponentially). For , however, it grows much more quickly; even is about 2.00353×1019728, and the decimal expansion of is very large by any typical measure, about 2.12004×106.03123×1019727.
  • An interesting aspect is that the only arithmetic operation it ever uses is addition of 1. Its fast growing power is based solely on nested recursion. This also implies that its running time is at least proportional to its output, and so is also extremely huge. In actuality, for most cases the running time is far larger than the output; see above.
  • A single-argument version that increases both and at the same time dwarfs every primitive recursive function, including very fast-growing functions such as the exponential function, the factorial function, multi- and superfactorial functions, and even functions defined using Knuth's up-arrow notation (except when the indexed up-arrow is used). It can be seen that is roughly comparable to in the fast-growing hierarchy. This extreme growth can be exploited to show that which is obviously computable on a machine with infinite memory such as a Turing machine and so is a computable function, grows faster than any primitive recursive function and is therefore not primitive recursive.

Not primitive recursive

The Ackermann function grows faster than any primitive recursive function and therefore is not itself primitive recursive. The sketch of the proof is this: a primitive recursive function defined using up to k recursions must grow slower than , the (k+1)-th function in the fast-growing hierarchy, but the Ackermann function grows at least as fast as .

Specifically, one shows that for every primitive recursive function there exists a non-negative integer such that for all non-negative integers ,

Once this is established, it follows that itself is not primitive recursive, since otherwise putting would lead to the contradiction

The proof proceeds as follows: define the class of all functions that grow slower than the Ackermann function

and show that contains all primitive recursive functions. The latter is achieved by showing that contains the constant functions, the successor function, the projection functions and that it is closed under the operations of function composition and primitive recursion.

Inverse

Since the function  f(n) = A(n, n) considered above grows very rapidly, its inverse function, f−1, grows very slowly. This inverse Ackermann function f−1 is usually denoted by α. In fact, α(n) is less than 5 for any practical input size n, since A(4, 4) is on the order of .

This inverse appears in the time complexity of some algorithms, such as the disjoint-set data structure and Chazelle's algorithm for minimum spanning trees. Sometimes Ackermann's original function or other variations are used in these settings, but they all grow at similarly high rates. In particular, some modified functions simplify the expression by eliminating the −3 and similar terms.

A two-parameter variation of the inverse Ackermann function can be defined as follows, where is the floor function:

This function arises in more precise analyses of the algorithms mentioned above, and gives a more refined time bound. In the disjoint-set data structure, m represents the number of operations while n represents the number of elements; in the minimum spanning tree algorithm, m represents the number of edges while n represents the number of vertices. Several slightly different definitions of α(m, n) exist; for example, log2 n is sometimes replaced by n, and the floor function is sometimes replaced by a ceiling.

Other studies might define an inverse function of one where m is set to a constant, such that the inverse applies to a particular row. [19]

The inverse of the Ackermann function is primitive recursive.[20]

Usage

In computational complexity

The Ackermann function appears in the time complexity of some algorithms,[21] such as vector addition systems[22] and Petri net reachability, thus showing they are computationally infeasible for large instances.[23]

The inverse of the Ackermann function appears in some time complexity results. For instance, the disjoint-set data structure takes amortized time per operation proportional to the inverse Ackermann function,[24] and cannot be made faster within the cell-probe model of computational complexity.[25]

In discrete geometry

Certain problems in discrete geometry related to Davenport–Schinzel sequences have complexity bounds in which the inverse Ackermann function appears. For instance, for line segments in the plane, the unbounded face of the arrangement of the segments has complexity , and some systems of line segments have an unbounded face of complexity .[26]

As a benchmark

The Ackermann function, due to its definition in terms of extremely deep recursion, can be used as a benchmark of a compiler's ability to optimize recursion. The first published use of Ackermann's function in this way was in 1970 by Dragoș Vaida[27] and, almost simultaneously, in 1971, by Yngve Sundblad.[14]

Sundblad's seminal paper was taken up by Brian Wichmann (co-author of the Whetstone benchmark) in a trilogy of papers written between 1975 and 1982.[28][29][30]

See also

Notes

  1. ^ with parameter order reversed
  2. ^ 'curried'
  3. ^ In each step the underlined redex is rewritten.
  4. ^ a b here: leftmost-innermost strategy!
  5. ^ a b c d For better readability
    S(0) is notated as 1,
    S(S(0)) is notated as 2,
    S(S(S(0))) is notated as 3,
    etc...
  6. ^ The maximum depth of recursion refers to the number of levels of activation of a procedure which exist during the deepest call of the procedure. Cornelius & Kirby (1975)
  7. ^ LOOP n+1 TIMES DO F

References

  1. ^ Monin & Hinchey 2003, p. 61.
  2. ^ a b Ackermann 1928.
  3. ^ "Decimal expansion of A(4,2)". kosara.net. 27 August 2000. Archived from the original on 20 January 2010.
  4. ^ Calude, Marcus & Tevy 1979.
  5. ^ Hilbert 1926, p. 185.
  6. ^ van Heijenoort 1977.
  7. ^ Péter 1935.
  8. ^ Robinson 1948.
  9. ^ Ritchie 1965, p. 1028.
  10. ^ a b c Buck 1963.
  11. ^ Meeussen & Zantema 1992, p. 6.
  12. ^ Munafo 1999a.
  13. ^ Ritchie 1965.
  14. ^ a b Sundblad 1971.
  15. ^ Porto & Matos 1980.
  16. ^ Grossman & Zeitman 1988.
  17. ^ Paulson 2021.
  18. ^ Cohen 1987, p. 56, Proposition 3.16 (see in proof).
  19. ^ Pettie 2002.
  20. ^ Matos 2014.
  21. ^ Brubaker 2023.
  22. ^ Czerwiński & Orlikowski 2022.
  23. ^ Leroux 2022.
  24. ^ Tarjan 1975.
  25. ^ Fredman & Saks 1989.
  26. ^ Wiernik & Sharir 1988.
  27. ^ Vaida 1970.
  28. ^ Wichmann 1976.
  29. ^ Wichmann 1977.
  30. ^ Wichmann 1982.

Bibliography

Read other articles:

Hong Kong investment banking firm Somerley Capital LimitedHeadquarters at 29 Queen’s Road CentralNative name新百利融資有限公司TypePublicTraded asSEHK: 8439IndustryInvestment bankingFounded1983; 40 years ago (1983)FounderMartin Nevil SabineHeadquartersHong KongRevenue HK$68.18 million (FY 2021)Net income HK$−3.86 million (FY 2021)Total assets HK$116.17 million (FY 2021)Total equity HK$95.41 million (FY 2021)Number of employees 48 (FY 2021)Websitewww.some...

 

Iron sailing ship wrecked on Chesil Beach Rescuers working to save those on the Royal Adelaide near Portland. The Illustrated London News, 1872 History NameRoyal Adelaide OwnerGibbs, Bright & Company BuilderWilliam Patterson, Bristol Launched28 January 1865 Out of service25 November 1872 FateWrecked at 50°34.65′N 2°28.50′W / 50.57750°N 2.47500°W / 50.57750; -2.47500 General characteristics Tonnage1,298 tons Length233 ft (71 m) Beam38 ft (12&#...

 

Untuk aktris, lihat Kang Min-ah. Kang Mi-naKang pada 1 September 2019Nama asal강미나LahirKang Mi-na4 Desember 1999 (umur 23)Icheon, Korea SelatanPendidikanSekolah Seni Pertunjukan SeoulPekerjaanPenyanyiKarier musikGenreK-popTahun aktif2016–sekarangLabelJellyfish EntertainmentYMC EntertainmentArtis terkaitI.O.IGugudanNama KoreaHangul강미나 Hanja康美娜 Alih AksaraGang Mi-naMcCune–ReischauerKang Mi-na Kang Mi-na (lahir 4 Desember 1999) adalah seorang penyanyi idola Korea S...

Deel van de begraafplaats Ardennes American Cemetery and Memorial is een Amerikaans ereveld bij de Belgische plaats Neupré. Het gebied werd op 7 september 1944 bevrijd door de Amerikaanse 3e Pantserdivisie. Enkele maanden later, op 8 februari 1945, werd de begraafplaats in gebruik genomen. In eerste instantie was de bedoeling om de slachtoffers van het Ardennenoffensief hier te begraven, maar de meesten van hen werden op de Amerikaanse militaire begraafplaats Henri-Chapelle in Hendrik-Kapell...

 

بتروجلف مصربتروجلف مصرمعلومات عامةالتأسيس 2007النوع شركة مساهمةالمقر الرئيسي المعادي، القاهرة،  مصرموقع الويب http://www.petrogulfmisr.comالمنظومة الاقتصاديةالشركة الأم جنوب الوادي المصرية القابضة للبترولالصناعة استكشاف وانتاج البترولأهم الشخصياتالمالك الهيئة المصرية العامة لل

 

中华人民共和国历次普查 人口普查 第一次人口普查(1953) 第二次人口普查(1964) 第三次人口普查(1982) 第四次人口普查(1990) 第五次人口普查(2000) 第六次人口普查(2010) 第七次人口普查(2020) 全面经济普查 第一次经济普查(2004) 第二次经济普查(2008) 第三次经济普查(2013) 第四次经济普查(2018) 专项经济普查 全国农业普查 第一次农业普查(1996) 第二次...

2014 Telugu romantic film by Jaya Ravindra Nee Jathaga NenundaliPosterDirected byJaya RavindraWritten byShagufta RafiqueProduced byBandla GaneshStarringSachiin J JoshiNazia HussainCinematographyA. VasanthEdited byM. R. VarmaMusic byMithoonJeet GannguliAnkit TiwariProductioncompanyParameswara Art ProductionsRelease date 22 August 2014 (2014-08-22) CountryIndiaLanguageTelugu Nee Jathaga Nenundali (transl. I want to be your companion) is a 2014 Telugu romantic musical drama ...

 

US federal prison complex This article does not cite any sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Federal Correctional Complex, Pollock – news · newspapers · books · scholar · JSTOR (October 2015) (Learn how and when to remove this template message)Federal Correctional Complex, PollockLocationGrant Parish, LouisianaStatusOperationalSecurity classHig...

 

Comedy podcast PodcastThe Bechdel CastPresentationHosted byCaitlin Durante and Jamie LoftusGenreComedyLanguageEnglishUpdatesWeekly on Thursdays and twice a month on PatreonProductionAudio formatPodcasting (via streaming or download)No. of episodes374 episodes, plus 148 episodes on PatreonPublicationOriginal releaseNovember 27, 2016ProvideriHeartRadio NetworkRelatedWebsitewww.iheart.com/podcast/105-the-bechdel-cast-30089535/ The Bechdel Cast is a weekly podcast about the representation of wome...

1947 Donald Duck cartoon Straight ShootersTheatrical release posterDirected byJack HannahStory byMacDonald MacPhersonJack HuberProduced byWalt DisneyStarringClarence NashMusic byOliver WallaceAnimation byWilliam JusticeJudge WhitakerVolus JonesFred JonesLayouts byYale GraceyBackgrounds byThelma WitmerColor processTechnicolorProductioncompanyWalt Disney ProductionsDistributed byRKO Radio PicturesRelease date April 18, 1947 (1947-04-18) Running time6 minutes 21 secondsCountryUnit...

 

此條目没有列出任何参考或来源。 (2018年9月10日)維基百科所有的內容都應該可供查證。请协助補充可靠来源以改善这篇条目。无法查证的內容可能會因為異議提出而被移除。 史泰登島渡輪正在跨越紐約港,背景為韋拉札諾海峽大橋。 史泰登島渡輪(英語:Staten Island Ferry)是一條位於美國紐約港內的渡輪路線,由紐約市交通局所營運,連接紐約市的曼哈頓砲台公園的南碼頭...

 

Period of cultural flourishing in the 8th to 13th centuries From top to bottom and left to right: al-Zahrawi, al-Biruni, Ibn al-Nafis, Avicenna, Averroes, Ibn Firnas, Alhazen, Muhammad al-Idrisi, Ismail al-Jazari, al-Jahiz Islamic Golden Age8th century – 14th centuryMonarch(s)Umayyad, Abbasid, Samanid, Fatimid, Ayyubid, MamlukLeader(s) Umar II Harun al-Rashid Al-Ma'mun Al-Mutawakkil Al-Hakam II Ismail Samani Almanzor Mahmud of Ghazni Saladin Ayyubi Baibars Chronology Rashidun Calip...

Biografi ini memerlukan lebih banyak catatan kaki untuk pemastian. Bantulah untuk menambahkan referensi atau sumber tepercaya. Materi kontroversial atau trivial yang sumbernya tidak memadai atau tidak bisa dipercaya harus segera dihapus, khususnya jika berpotensi memfitnah.Cari sumber: Ibnu Katsir – berita · surat kabar · buku · cendekiawan · JSTOR (Pelajari cara dan kapan saatnya untuk menghapus pesan templat ini) Ismailal-Hafizh Ibnu KatsirSampul kit...

 

Public library in Chennai, India Connemara Public LibraryEntrance of Connemara Public LibraryLocationEgmore, Chennai, Tamil Nadu, India., IndiaTypePublic libraryEstablished5 December 1896(127 years ago) (1896-12-05)CollectionItems collectedBooks, academic journals, magazines, Braille books, manuscripts The Connemara Public Library at Egmore in Chennai, Tamil Nadu, India, is one of the four National Depository Libraries which receive a copy of all books, newspapers and periodicals pu...

 

Economia de Portugal Economia de Portugal Moeda Euro (1 Euro = 200,482 Escudos portugueses) Ano fiscal Ano calendário Blocos comerciais OMC, União Europeia e OCDE Banco Central Banco de Portugal Estatísticas Bolsa de valores Euronext Lisboa PIB $257,391 mil milhões (nominal; 2021)[1] $370,497 mil milhões (PPC; 2021)[1] Variação do PIB 1,9% [1] (est. 2019) PIB per capita 29 567 euros[2][3](2016) PIB por setor Agricultura 2,6%Indústria 22,6%Comércio e Serviços 74,8% Inflação (IPC) 0...

موقع الحادث (منفلوط) الإحداثيات 27°19′N 30°58′E / 27.317°N 30.967°E / 27.317; 30.967 تقسيم إداري  البلد مصر  تعديل مصدري - تعديل   حادث قطار منفلوط وقع يوم 17 نوفمبر 2012 عند مزلقان قرية المندرة التابعة لمركز منفلوط بمحافظة أسيوط، واصطدم فيه قطار تابع لسكك حديد مصر بحافلة مدر...

 

La seguridad informática, también conocida como ciberseguridad,[1]​ es el área relacionada con la informática y la telemática que se enfoca en la protección de la infraestructura computacional y todo lo vinculado con la misma, y especialmente la información contenida en una computadora o circulante a través de las redes de computadoras.[2]​ Para ello existen una serie de estándares, protocolos, métodos, reglas, herramientas, y leyes concebidas para minimizar los posibles...

 

1997 studio album by GalijaVoleti voletiStudio album by GalijaReleased1997RecordedSummer 1997StudioStudio Pink Studio OGenreRockFolk rockLength45:30LabelPGP-RTSProducerIvan VlatkovićGalija chronology Večita plovidba(1997) Voleti voleti(1997) Ja jesam odavde(1998) Voleti voleti (trans: To Love to Love) is the eleventh studio album from Serbian and former Yugoslav rock band Galija. Track listing All the songs were written by Nenad Milosavljević (music) and Slobodan Kostadinović (lyr...

يفتقر محتوى هذه المقالة إلى الاستشهاد بمصادر. فضلاً، ساهم في تطوير هذه المقالة من خلال إضافة مصادر موثوق بها. أي معلومات غير موثقة يمكن التشكيك بها وإزالتها. (نوفمبر 2019) الدوري اليوناني 1963–64 تفاصيل الموسم الدوري اليوناني لكرة القدم  النسخة 5،  و28  البلد اليونان  ا...

 

Former infantry regiment of the armies of British India and Pakistan 8th Punjab RegimentActive1922 - 1956Allegiance British India (1922 - 47) Pakistan (1947 - 56)Branch British Indian Army Pakistan ArmyTypeLine InfantryRegimental CentreLahoreUniformDrab; faced blueMarchGod Bless the Prince of WalesEngagementsSecond Poligar War 1801 Second Anglo-Maratha War 1803-05 Travancore War 1808-09 Third Anglo-Maratha War 1817-19 Third Kandy War 1818 First Burma War 1824-26 Naning War 1831...

 

Strategi Solo vs Squad di Free Fire: Cara Menang Mudah!