Easter Date Calculator

Calculate Easter Sunday dates for any year using the Computus algorithm. View both Western and Orthodox Easter dates.

Western Easter

Sunday, April 5, 2026

Orthodox Easter

Sunday, April 12, 2026

Western Related Dates

Shrove Tuesday: Feb 17

Ash Wednesday: Feb 18

Palm Sunday: Mar 29

Maundy Thursday: Apr 2

Good Friday: Apr 3

Easter Monday: Apr 6

Ascension: May 14

Pentecost: May 24

Orthodox Related Dates

Clean Monday: Feb 25

Palm Sunday: Apr 5

Holy Thursday: Apr 9

Great Friday: Apr 10

Great Saturday: Apr 11

Bright Monday: Apr 13

Ascension: May 21

Pentecost: May 31

Easter Dates Range

YearWesternOrthodox
2026Apr 5Apr 12
2027Mar 28May 2
2028Apr 16Apr 16
2029Apr 1Apr 8
2030Apr 21Apr 28
2031Apr 13Apr 13
2032Mar 28May 2
2033Apr 17Apr 24
2034Apr 9Apr 9
2035Mar 25Apr 29
2036Apr 13Apr 20

What Is the Easter Date Calculator?

The Easter Date Calculator computes the date of Easter Sunday for any year between 326 AD and 4099 AD, for both the Western (Gregorian) and Eastern Orthodox (Julian) traditions. Easter is one of the most mathematically complex holidays in the calendar because its date shifts each year according to a specific astronomical and ecclesiastical rule rather than falling on a fixed date.

Easter Sunday is defined as the first Sunday after the first ecclesiastical full moon that occurs on or after March 21 (the ecclesiastical spring equinox). This definition combines solar, lunar, and weekly cycles, making its calculation non-trivial. The algorithm that computes it — known as Computus, from the Latin word for calculation — has been refined over centuries.

This calculator uses the Anonymous Gregorian algorithm for Western Easter and the Julian calendar method (with Gregorian conversion) for Orthodox Easter. It also displays a full set of related holidays — from Ash Wednesday to Pentecost — derived from the Easter date.

Whether you're planning church services, calculating school holidays, or exploring historical dates, this tool provides accurate results for both major Easter traditions instantly.

The Computus Algorithm

The Western Easter date is computed using the Anonymous Gregorian algorithm, a series of modular arithmetic steps that together determine the month and day of Easter Sunday in any year of the Gregorian calendar.

Western Easter (Anonymous Gregorian Algorithm)

month = floor((h + l - 7m + 114) / 31), day = ((h + l - 7m + 114) mod 31) + 1

Where:

  • a= y mod 19 — the year's position in the 19-year Metonic cycle
  • h= (19a + b - d - g + 15) mod 30 — the epact, days since last new moon on March 21
  • l= (32 + 2e + 2i - h - k) mod 7 — day-of-week correction
  • m= floor((a + 11h + 22l) / 451) — additional correction for certain late dates
  • month= The calendar month of Easter Sunday (3 = March, 4 = April)
  • day= The day of the month of Easter Sunday

Western vs. Orthodox Easter

The key difference between Western and Orthodox Easter dates lies in the calendar system each tradition uses. Western churches (Catholic and most Protestant) adopted the Gregorian calendar in 1582, which corrected drift in the Julian calendar. Orthodox churches retained the older Julian calendar for their liturgical calculations.

As a result, Orthodox Easter is calculated against the Julian calendar and then converted to the Gregorian calendar for civil dates. Because the Julian calendar drifts approximately 3 days behind the Gregorian calendar every 400 years, Orthodox Easter typically falls 1–5 weeks later than Western Easter, though in some years they coincide.

Feature Western Easter Orthodox Easter
Calendar baseGregorianJulian (converted)
Earliest dateMarch 22April 4 (Gregorian)
Latest dateApril 25May 8 (Gregorian)
TraditionsCatholic, ProtestantGreek, Russian, Serbian, etc.

How to Use This Calculator

Using the Easter Date Calculator is straightforward:

  1. Enter a Year: Type any year between 326 and 4099 in the Year field. The year 326 is used because that is when the Council of Nicaea standardized Easter's calculation.
  2. View Results: Both Western Easter and Orthodox Easter dates appear instantly, along with all related holy days for that tradition.
  3. View a Date Range: Enter a Start Year and End Year (up to 100 years apart) to see a table of Easter dates for multiple years at once. Rows highlighted in green indicate years when Western and Orthodox Easter fall on the same day.

No input format concerns — simply enter a four-digit year. The calculator handles all the complex Computus arithmetic automatically.

Real-World Applications

Calculating Easter dates has practical importance far beyond religious observance. Because Good Friday and Easter Monday are public holidays in many countries (UK, Australia, Germany, Canada, and dozens more), businesses, schools, and government agencies rely on accurate Easter dates for scheduling annual leave, academic calendars, and payroll cycles years in advance.

Software developers integrating holiday calendars into HR systems, booking platforms, and financial applications need reliable Easter date algorithms. The Computus algorithm used here is the same one implemented in most professional calendar libraries.

Historians and genealogists use Easter date calculators to interpret old documents that reference events relative to Lent, Holy Week, or Eastertide. Many historical records in Europe used Easter as a reference point for dating other events.

Worked Examples

Western Easter for 2025

Problem:

What is the date of Western Easter in 2025?

Solution Steps:

  1. 1Apply Computus: a = 2025 mod 19 = 11
  2. 2b = floor(2025/100) = 20, c = 2025 mod 100 = 25
  3. 3d = floor(20/4) = 5, e = 20 mod 4 = 0, f = floor(28/25) = 1, g = floor(18/3) = 6
  4. 4h = (19Ɨ11 + 20 āˆ’ 5 āˆ’ 6 + 15) mod 30 = (209 + 20 āˆ’ 5 āˆ’ 6 + 15) mod 30 = 233 mod 30 = 23
  5. 5i = floor(25/4) = 6, k = 25 mod 4 = 1, l = (32 + 0 + 12 āˆ’ 23 āˆ’ 1) mod 7 = 20 mod 7 = 6
  6. 6m = floor((11 + 253 + 132) / 451) = floor(396/451) = 0
  7. 7month = floor((23 + 6 āˆ’ 0 + 114)/31) = floor(143/31) = 4 (April)
  8. 8day = (143 mod 31) + 1 = 20 + 1 = 21

Result:

Western Easter 2025 falls on Sunday, April 20, 2025.

Years When Both Easters Coincide

Problem:

Do Western and Orthodox Easter ever fall on the same day?

Solution Steps:

  1. 1Yes — when the Julian and Gregorian full moon cycles align, both Easters share the same Sunday.
  2. 2Example: In 2025, Western Easter is April 20 and Orthodox Easter is also April 20.
  3. 3This coincidence occurs roughly every 3–4 years on average, but the gap varies widely.
  4. 4The calculator highlights these shared-date years in green in the date range table.

Result:

In 2025, both Western and Orthodox Easter fall on April 20 — a coincidence year.

Finding Good Friday from Easter

Problem:

If Easter is April 20, what is Good Friday?

Solution Steps:

  1. 1Good Friday is always 2 days before Easter Sunday.
  2. 2April 20 āˆ’ 2 days = April 18.
  3. 3The calculator computes this automatically as: Easter.getTime() āˆ’ 2 Ɨ 24 Ɨ 60 Ɨ 60 Ɨ 1000 ms.

Result:

Good Friday falls on April 18, 2025.

Tips & Best Practices

  • āœ“Easter always falls between March 22 and April 25 (Western) — if a date falls outside this range, double-check your input.
  • āœ“Use the date range table to plan multi-year school or business holiday calendars in one step.
  • āœ“Good Friday and Easter Monday are public holidays in many countries — export the range data for HR or payroll planning.
  • āœ“Years when Western and Orthodox Easter coincide are highlighted in green in the range table.
  • āœ“Pentecost always falls exactly 49 days (7 weeks) after Easter Sunday — use this to verify your Easter date.
  • āœ“For historical dates before 1582, the Julian Easter algorithm is more historically accurate than the Gregorian one.

Frequently Asked Questions

Easter is tied to both the solar calendar (the spring equinox, fixed at March 21 ecclesiastically) and the lunar calendar (the first full moon on or after March 21). Because the lunar cycle (29.5 days) doesn't divide evenly into the solar year (365.25 days), the full moon falls on a different calendar date each year, causing Easter to shift. The 19-year Metonic cycle eventually brings these back into alignment.
For Western Easter, the earliest possible date is March 22 and the latest is April 25. Orthodox Easter (expressed in Gregorian dates) can range from April 4 to May 8. The extreme dates are rare — March 22 last occurred in 1818 and won't happen again until 2285.
The gap arises because the Julian calendar (used by Orthodox churches for liturgical reckoning) is currently 13 days behind the Gregorian calendar, and because the two traditions use different tables of ecclesiastical full moons. When these two differences push in the same direction, Orthodox Easter can fall up to 5 weeks after Western Easter.
The Anonymous Gregorian algorithm is exact for all years in the Gregorian calendar (1583 onward) and gives accurate results for projections far into the future. For years before 1582, the Julian Easter algorithm is more appropriate. This calculator supports both.
Computus is the Latin word for 'computation' or 'reckoning.' It refers specifically to the calculation of the Easter date. Medieval monks devoted significant effort to mastering Computus, and it was considered one of the most important mathematical skills a scholar could possess.

Sources & References

Last updated: 2026-06-06

šŸ’”

Help us improve!

How would you rate the Easter Date Calculator?

<>

Editorial Note

MyCalcBuddy Editorial Team

This page is maintained as an educational calculator reference.

Source

Formula Source: Standard Mathematical References

by Various

UpdatedLast reviewed: May 2026
CheckedFormula checks are based on standard references and internal QA review.

Privacy choices

MyCalcBuddy uses necessary storage for the site to work. Optional analytics, notifications, and future advertising features stay off unless you allow them.