How to calculate a biorhythm, step by step

15 June 2026 · 6 min read

To calculate a biorhythm you count the days you have been alive, then see where that count falls inside each cycle — physical (23 days), emotional (28) and intellectual (33). The position within a cycle gives you a phase, and in Dr. Sikora's method that phase is read as one discrete state, not a percentage. Here is the whole method, step by step.

How do you calculate a biorhythm by hand?

It is just three steps and some simple arithmetic:

  1. Count the days you have been alive. From your birth date to the target date, count every day (including leap days). Call this number D.
  2. Divide by each cycle and keep the remainder. Compute D modulo 23, D modulo 28 and D modulo 33. Each remainder is your day within that cycle (if a remainder is 0, treat it as the last day of the cycle).
  3. Map the day to a phase. Look up which state that day falls into for each cycle, using the layout below.
CycleHigh (+)Critical (X)Low (−)Zero (0)
Physical (23)1–101112–2122–23
Emotional (28)1–1213–1415–2627–28
Intellectual (33)1–151617–3132–33

A worked example

Say you have been alive 13,000 days. Then:

So on that day two cycles are high and one is low — and, crucially, none is on a critical day. That single line of reasoning is the entire calculation; everything a calculator shows is just this, repeated for each date and drawn as a wave. If the phases themselves are unfamiliar, what are biorhythms? explains each one.

What is the formula?

For the smooth chart you have probably seen, each cycle is a sine wave: sin(2π × D ÷ period), giving a value between −1 and +1. That formula is fine for drawing, but it is not where the meaning lives. Dr. Sikora's method treats the day-within-cycle as a discrete phase from the table above — so two people can have very different sine values yet the same phase, and it is the phase that the method actually interprets. If you want to see how to read the finished chart, we cover that in how to read a biorhythm chart.

Why the birth-time correction matters

Sikora's method adds one refinement most calculators drop: a small birth-time correction. People born in the morning and in the afternoon get a slightly different offset, which can shift a borderline day by one. It rarely changes a clear high or low, but it can decide whether a day sits exactly on a critical day (X) — which is the day that matters most. This precision is part of why the method is reproducible against its source materials, not just a rough sine sketch.

Counting the days without mistakes

The one fiddly step is step 1 — counting D, the days you have been alive. By hand, the trap is leap years: every fourth year adds a day, so a rough "years × 365" drifts by a week or more across a lifetime. A cleaner way is to count full years, multiply by 365, add one for each leap day that has passed since you were born, then add the leftover days up to the target date. Even so, an off-by-one slips in easily. That is exactly the kind of small, mechanical error that quietly shifts a phase — and the reason the birth-time correction only makes sense once the day count itself is exact. If a borderline critical day is riding on it, it is worth double-checking D before you trust the result.

Checking a specific future date

The real practical value of biorhythms is foresight — spotting upcoming critical days before they arrive, not just labelling today in hindsight. Extending the calculation forward is straightforward: instead of D, use D + 14 (or however many days ahead you want to look).

Continuing the earlier example where D = 13,000, a date 14 days from now means D = 13,014. Run the same three modulo operations:

Notice what changed and what did not: the remainders shifted by exactly 14 in each case (with wrapping where the cycle restarts), and the phases followed those shifts entirely. The underlying formula did not change at all — you just fed it a different D. That predictability is the point. Because each cycle repeats with a fixed period, you can scan days ahead in bulk, looking for the pattern you care about most — say, the next time the physical cycle hits a critical day, or the next window where all three cycles are simultaneously high.

This is exactly what a calculator does when it draws your full month-ahead chart: it repeats this three-line modulo calculation for every future date and maps each result to the phase table you have already seen.

What the calculation cannot account for

The arithmetic is completely deterministic, which means it cannot reflect anything that happens to you after the moment of birth. A bout of illness, a flight across six time zones, a night of disrupted sleep — none of these change your days-alive count, and therefore none of them shift the calculated cycle position. Time zone changes affect your circadian rhythm (the sleep-wake cycle driven by daylight), but they do not alter your birth-date count. Similarly, there is no concept of a "skipped day" in the formula: every calendar day increments D by exactly one, regardless of how it was spent. The calculation is a clock, not a mirror.

Do you actually need to do this by hand?

No — and you do not have to. The point of working it out once is trust: when you can see that a biorhythm is just days-alive arithmetic mapped to a fixed table, the result stops feeling like a black box. After that, let the tool do the counting. It also handles the leap-year and birth-time details that are easy to get wrong by hand.

The math is exact and a little boring — which is the honest part. Biorhythms are an unproven wellness tradition; the calculation is precise, the meaning is for you to weigh.

Want the answer without the arithmetic? Open aimy.bio, enter your birth date, and it computes all three cycles, the phases and the upcoming critical days instantly — free, no sign-up, everything in your browser.

FAQ

How do you calculate a biorhythm?

Count the number of days you have been alive, then take that number modulo each cycle length — 23 (physical), 28 (emotional), 33 (intellectual). The remainder is your day within that cycle, which maps to a phase.

What is the biorhythm formula?

For a smooth chart: sin(2π × days_alive ÷ period). But Dr. Sikora's method ignores the curve's value and instead maps the day-within-cycle to a fixed phase: high, low, critical or zero.

Do I need my birth time to calculate it?

Only for Sikora's refinement: morning and afternoon births get a small correction. Without a birth time the cycle-day count still works; the correction just nudges borderline days.

Is calculating a biorhythm scientifically meaningful?

No. The arithmetic is exact, but the theory behind it is an unproven wellness tradition — treat the result as a reflective prompt, never as a medical or predictive fact.

Check your biorhythms

← All articles