Difference between revisions of "Gaussian Formulae"

From OrthodoxWiki
Jump to: navigation, search
 
(clarification)
 
(8 intermediate revisions by 2 users not shown)
Line 2: Line 2:
  
 
In these formulae, mod indicates the [http://mathworld.wolfram.com/Modulus.html Modulus], a mathematical operator that returns the remainder from division. For example, <math>8 mod 3 = 2</math> because <math>8 / 3 = 2 remainder 2</math>.
 
In these formulae, mod indicates the [http://mathworld.wolfram.com/Modulus.html Modulus], a mathematical operator that returns the remainder from division. For example, <math>8 mod 3 = 2</math> because <math>8 / 3 = 2 remainder 2</math>.
 +
 
In addition, int indicates the [http://mathworld.wolfram.com/IntegerPart.html Integer Part] of a number. For positive numbers, it returns the greatest integer less than the number. For example, <math>Int(8.25) = 8</math>.
 
In addition, int indicates the [http://mathworld.wolfram.com/IntegerPart.html Integer Part] of a number. For positive numbers, it returns the greatest integer less than the number. For example, <math>Int(8.25) = 8</math>.
  
 
Year indicates the year of interest (AD).
 
Year indicates the year of interest (AD).
 +
 
The formulae:
 
The formulae:
a = Year mod 4
 
b = Year mod 7
 
c = Year mod 19
 
d = (19c + 15) mod 30
 
e = (2a + 4b - d + 34) mod 7
 
f = Int((d + e + 114) / 31)
 
g = ((d + e + 114) mod 31) + 1
 
  
f is the month of Pascha.
+
a = Year mod 4<br>b = Year mod 7<br>c = Year mod 19<br>d = (19c + 15) mod 30<br>e = (2a + 4b - d + 34) mod 7<br>f = Int((d + e + 114) / 31)<br>g = ((d + e + 114) mod 31) + 1<br>f is the month of Pascha.<br>g is the day of Pascha. For example, if f is 3 and g is 27, then Pascha occurs on March 27.
g is the day of Pascha. For example, if f is 3 and g is 27, then Pascha occurs on March 27.
+
 
 +
Important, this returns the date of Pascha ONLY on the [[Old Calendar]]. To get the Gregorian date, add 13 days during the twentieth and twenty-first centuries.
 +
 
  
Important, this returns the date of Pascha ONLY on the [[Old Calendar]]. To get the Gregorian date, add 13 days.
+
==Related Links==
 +
* [[Paschalion]]
 +
* [[Church Calendar]]
  
 +
==External Links==
 +
* Source: Hieromonk Cassian, ''A Scientific Examination of the Orthodox Church Calendar'', ISBN 0911165312. Available from [http://users.sisqtel.net/sgpm/ctos/oldcal/SEO.html The Center for Traditionalist Orthodox Studies]
 +
* Programs using these formulae: [http://www.duke.edu/~aa63/menologion.html ''Menologion'']
  
----
+
[[Category:Church Life]]
Source: Hieromonk Cassian, ''A Scientific Examination of the Orthodox Church Calendar''
 
Programs using these formulae: [http://www.duke.edu/~aa63/menologion.html ''Menologion'']
 

Latest revision as of 00:42, October 4, 2011

The Gaussian Formulae for Pascha were created by the prolific German mathematician Karl Friedrich Gauss (1777-1855).

In these formulae, mod indicates the Modulus, a mathematical operator that returns the remainder from division. For example, <math>8 mod 3 = 2</math> because <math>8 / 3 = 2 remainder 2</math>.

In addition, int indicates the Integer Part of a number. For positive numbers, it returns the greatest integer less than the number. For example, <math>Int(8.25) = 8</math>.

Year indicates the year of interest (AD).

The formulae:

a = Year mod 4
b = Year mod 7
c = Year mod 19
d = (19c + 15) mod 30
e = (2a + 4b - d + 34) mod 7
f = Int((d + e + 114) / 31)
g = ((d + e + 114) mod 31) + 1
f is the month of Pascha.
g is the day of Pascha. For example, if f is 3 and g is 27, then Pascha occurs on March 27.

Important, this returns the date of Pascha ONLY on the Old Calendar. To get the Gregorian date, add 13 days during the twentieth and twenty-first centuries.


Related Links

External Links